me
/
guix
Archived
1
0
Fork 0

gnu: python-py: Update to 1.10.0.

* gnu/packages/check.scm (python-pytest-6)[propagated-inputs]: Replace
python-py-next by python-py.
* gnu/packages/python-xyz.scm (python-py): Update to 1.10.0.
(python-py-next): Remove variable.
master
Maxim Cournoyer 2021-01-14 08:45:57 -05:00
parent 01f0707207
commit a822f951e0
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
2 changed files with 3 additions and 15 deletions

View File

@ -964,7 +964,7 @@ and many external plugins.")
(propagated-inputs
(append (alist-delete "python-py"
(package-propagated-inputs python-pytest))
`(("python-py" ,python-py-next))))
`(("python-py" ,python-py))))
(native-inputs
(append (alist-delete "python-pytest"
(package-native-inputs python-pytest))

View File

@ -2446,14 +2446,14 @@ server.")
(define-public python-py
(package
(name "python-py")
(version "1.8.1")
(version "1.10.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "py" version))
(sha256
(base32
"1ajjazg3913n0sp3vjyva9c2qh5anx8ziryng935f89604a0h9sy"))))
"1lqvkqk3b440g9z82gqbzlzas84wrm6ir8kplzhzavmn2pd1pf11"))))
(build-system python-build-system)
(arguments
;; FIXME: "ImportError: 'test' module incorrectly imported from
@ -2470,18 +2470,6 @@ server.")
code introspection, and logging.")
(license license:expat)))
(define-public python-py-next
(package
(inherit python-py)
(version "1.9.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "py" version))
(sha256
(base32
"0hpk0gzd4v1pcnq7zinwg5n219czi23qghcswykqskkbwly8i9lw"))))))
(define-public python2-py
(package-with-python2 python-py))