mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-14 02:50:45 +02:00
gnu: python-hacking: Update to 1.0.0.
* gnu/packages/openstack.scm (python-hacking): Update to 1.0.0. [propagated-inputs]: Change PYTHON-FLAKE8 to PYTHON-FLAKE8-2.5. * gnu/packages/python.scm (python-flake8-2.5, python2-flake8-2.5): New public variables.
This commit is contained in:
parent
ca6197dd65
commit
6f6db0269f
2 changed files with 29 additions and 3 deletions
|
@ -5468,6 +5468,32 @@ complexity of Python source code.")
|
|||
("python2-enum" ,python2-enum)
|
||||
,@(package-propagated-inputs base))))))
|
||||
|
||||
;; python-hacking requires flake8 <2.6.0.
|
||||
(define-public python-flake8-2.5
|
||||
(package
|
||||
(inherit python-flake8)
|
||||
(version "2.5.5")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "flake8" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1snylqwbmrylbx3r1wpz8ggk98f6bcag4441ag8mm2l7wyn58sij"))))
|
||||
(propagated-inputs
|
||||
`(("python-pep8" ,python-pep8)
|
||||
,@(package-propagated-inputs python-flake8)))
|
||||
(properties `((python2-variant . ,(delay python2-flake8-2.5))))))
|
||||
|
||||
(define-public python2-flake8-2.5
|
||||
(package
|
||||
(inherit python2-flake8)
|
||||
(version (package-version python-flake8-2.5))
|
||||
(source (origin
|
||||
(inherit (package-source python-flake8-2.5))))
|
||||
(propagated-inputs
|
||||
`(("python2-pep8" ,python2-pep8)
|
||||
,@(package-propagated-inputs python2-flake8)))))
|
||||
|
||||
(define-public python-flake8-polyfill
|
||||
(package
|
||||
(name "python-flake8-polyfill")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue