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
|
@ -118,17 +118,17 @@ manner.")
|
|||
(define-public python-hacking
|
||||
(package
|
||||
(name "python-hacking")
|
||||
(version "0.13.0")
|
||||
(version "1.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "hacking" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1s1wq2sds6fjp8rwz31vkp33kjl9nyk5y2g2pri8shic75dr00h4"))))
|
||||
"0s9l99s64jsyvm28fa4hzllbdi21sb7jn4gzdf1pd5ckvy7p4b0k"))))
|
||||
(build-system python-build-system)
|
||||
(propagated-inputs
|
||||
`(("python-flake8" ,python-flake8)
|
||||
`(("python-flake8" ,python-flake8-2.5)
|
||||
("python-mccabe-0.2.1" ,python-mccabe-0.2.1)
|
||||
("python-pbr" ,python-pbr)
|
||||
("python-pep8-1.5.7" ,python-pep8-1.5.7)
|
||||
|
|
|
@ -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…
Reference in New Issue