Skip to content

Commit

Permalink
Revert "guix: remove tqdm"
Browse files Browse the repository at this point in the history
This reverts commit c3933db.
  • Loading branch information
alexfikl committed May 21, 2024
1 parent 2230fbb commit a7151bb
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions contrib/python-papis.scm
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,22 @@
(guix build-system python)
((guix licenses) #:prefix license:))

(define python-types-tqdm
(package
(name "python-types-tqdm")
(version "4.66.0.2")
(source (origin
(method url-fetch)
(uri (pypi-uri "types-tqdm" version))
(sha256
(base32
"0pylandfajknxprd2y06hxzfihy0cnyvh1gm3775yj0x9kjaalwm"))))
(build-system pyproject-build-system)
(home-page "https://github.com/python/typeshed")
(synopsis "Typing stubs for tqdm")
(description "Typing stubs for tqdm")
(license #f)))

(define python-types-pyyaml
(package
(name "python-types-pyyaml")
Expand Down Expand Up @@ -180,7 +196,7 @@ an elegant DOM API.")
"02792xxr4mwa17khw6szmpvdlck28sz0npfw57c2rb9dnh0rwvqr"))))
(build-system pyproject-build-system)
(arguments '(#:tests? #f))
(propagated-inputs (list python-requests))
(propagated-inputs (list python-requests python-tqdm))
(native-inputs (list python-pytest))
(home-page "https://github.com/sckott/habanero")
(synopsis "Low Level Client for Crossref Search API")
Expand Down Expand Up @@ -216,6 +232,7 @@ an elegant DOM API.")
python-requests
python-slugify ;added
python-stevedore
python-tqdm
python-typing-extensions))
(native-inputs (list python-flake8
python-flake8-bugbear
Expand All @@ -233,7 +250,8 @@ an elegant DOM API.")
python-types-pygments
python-types-python-slugify
python-types-pyyaml
python-types-requests))
python-types-requests
python-types-tqdm))
(home-page "https://github.com/papis/papis")
(synopsis
"Powerful and highly extensible command-line based document and bibliography manager")
Expand Down

0 comments on commit a7151bb

Please sign in to comment.