[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add python-waybackpack.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add python-waybackpack. |
Date: |
Wed, 11 Sep 2024 18:35:03 -0400 |
This is an automated email from the git hooks/post-receive script.
dannym pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 71735eae4f gnu: Add python-waybackpack.
71735eae4f is described below
commit 71735eae4f08a4232dee8e3d7aa16e3f863f9e85
Author: Danny Milosavljevic <dannym@friendly-machines.com>
AuthorDate: Thu Sep 12 00:30:32 2024 +0200
gnu: Add python-waybackpack.
* gnu/packages/python-web.scm (python-waybackpack): New variable.
Change-Id: I2ba32918f36a99dc9cb01499b645272b4e5ddb13
---
gnu/packages/python-web.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 2a7dc8f8b3..e94d0c44b9 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -9537,3 +9537,27 @@ hardware on Grid'5000 or via OpenStack, to Vagrant,
Chameleon, and more.")
(description "Python module to query and edit data stored in a
@url{https://netbox.dev,NetBox} instance.")
(license license:asl2.0)))
+
+(define-public python-waybackpack
+ (package
+ (name "python-waybackpack")
+ (version "0.6.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "waybackpack" version))
+ (sha256
+ (base32 "16lcr2hv7gmp199fh3psrnv68j20pfxria8v6gchrpl1jqx9f923"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list #:tests? #f)) ; would require network (and SSL certificates)
+ (propagated-inputs (list python-requests))
+ (native-inputs (list python-pytest))
+ (home-page "https://github.com/jsvine/waybackpack")
+ (synopsis
+ "Command-line tool that lets you download the entire Wayback Machine
+archive for a given URL.")
+ (description
+ "This package provides a library and a command-line tool that lets
+you download the entire Wayback Machine archive for a given URL.")
+ (license license:expat)))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add python-waybackpack.,
guix-commits <=