me
/
guix
Archived
1
0
Fork 0

gnu: python-dotenv: Run test suite.

* gnu/packages/python-xyz.scm (python-dotenv)[arguments]: Add custom
'check phase.
master
Efraim Flashner 2021-12-01 13:16:26 +02:00
parent a8d62aea22
commit 1e8ad167f6
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 12 additions and 0 deletions

View File

@ -27636,6 +27636,18 @@ systems in Python.")
(sha256
(base32 "0pv5ygpr6syc6zkw21in4ysqs3k7qaxk9m1g5pzlafwm3silkpm5"))))
(build-system python-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda* (#:key tests? inputs outputs #:allow-other-keys)
(when tests?
(add-installed-pythonpath inputs outputs)
(setenv "PATH" (string-append (getenv "PATH") ":"
(assoc-ref outputs "out") "/bin"))
;; Skip the ipython tests.
(delete-file "tests/test_ipython.py")
(invoke "python" "-m" "pytest")))))))
(propagated-inputs
`(("python-click" ,python-click)))
(native-inputs