gnu: python-jsonschema: Correct inputs.

* gnu/packages/python.scm (python-jsonschema)[inputs]: Remove
python-setuptools. Move python-vcversioner to ...
[native-inputs]: ... here.
* gnu/packages/python.scm (python2-jsonschema)[inputs]: Move
python2-functools32 to ...
[propagated-inputs]: ... here.
[native-inputs]: Add python2-setuptools.
This commit is contained in:
Marius Bakke 2016-11-08 15:50:13 +00:00
parent c163a28473
commit eaba9d6670
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 7 additions and 6 deletions

View File

@ -2499,9 +2499,8 @@ version numbers.")
(base32 (base32
"0hddbqjm4jq63y8jf44nswina1crjs16l9snb6m3vvgyg31klrrn")))) "0hddbqjm4jq63y8jf44nswina1crjs16l9snb6m3vvgyg31klrrn"))))
(build-system python-build-system) (build-system python-build-system)
(inputs (native-inputs
`(("python-setuptools" ,python-setuptools) `(("python-vcversioner" ,python-vcversioner)))
("python-vcversioner" ,python-vcversioner)))
(home-page "http://github.com/Julian/jsonschema") (home-page "http://github.com/Julian/jsonschema")
(synopsis "Implementation of JSON Schema for Python") (synopsis "Implementation of JSON Schema for Python")
(description (description
@ -2513,9 +2512,11 @@ version numbers.")
(let ((jsonschema (package-with-python2 (let ((jsonschema (package-with-python2
(strip-python2-variant python-jsonschema)))) (strip-python2-variant python-jsonschema))))
(package (inherit jsonschema) (package (inherit jsonschema)
(inputs (native-inputs
`(("python2-functools32" ,python2-functools32) `(("python2-setuptools" ,python2-setuptools)
,@(package-inputs jsonschema)))))) ,@(package-native-inputs jsonschema)))
(propagated-inputs
`(("python2-functools32" ,python2-functools32))))))
(define-public python-unidecode (define-public python-unidecode
(package (package