summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-01-24 19:43:56 +0000
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:40 +0100
commitb4cfa771826e5f0b3be1212da900d57932444f64 (patch)
treeb6ecaaf554291c2ed7d188aed7a5902c85fa64df /gnu
parent86eeec55a76ad7da8f7be85835dd52b8a03f8ad6 (diff)
gnu: Remove python-dlmanager.
* gnu/packages/python-xyz.scm (python-dlmanager): Delete variable. Fixes: guix/guix#5097 Change-Id: I830bdaf93208e5016cf89a17cb8a81b592bbd408
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm33
1 files changed, 0 insertions, 33 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 9fc6518d08b..d6b6eb308bb 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -2818,39 +2818,6 @@ Python dataclasses.")
from JSON payloads using the @code{databind.core} framework.")
(license license:expat)))
-(define-public python-dlmanager
- (package
- (name "python-dlmanager")
- (version "0.1.1")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/parkouss/dlmanager")
- (commit version)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "0f2j7d396z50yd5r86jx8m5bxyv2i0cw967j68xcwpcg3b216zmr"))
- (modules '((guix build utils)))
- (snippet
- #~(begin
- (substitute* "setup.py"
- (("pytest.main.self.pytest_args.")
- "pytest.main(self.pytest_args.split(' '))"))))))
- (build-system python-build-system)
- (native-inputs
- (list python-pytest python-mock))
- (propagated-inputs
- (list python-requests python-six))
- (home-page "https://github.com/parkouss/dlmanager")
- (synopsis "Download manager library")
- (description
- "Dlmanager is a download manager library. It can download files in
-background and in parallel, and cancel downloads. It stores downloads in
-a given directory, avoiding re-downloading files and limits the size of this
-directory, removing oldest files.")
- (license license:gpl3+)))
-
(define-public python-docspec
(package
(name "python-docspec")