mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 12:39:36 -05:00
gnu: python2-validictory: Add missing input.
* gnu/packages/python.scm (python2-validictory)[native-inputs]: Add python2-setuptools. (python-validictory)[properties]: New field.
This commit is contained in:
parent
ff1e2b59bf
commit
7ca6830482
1 changed files with 8 additions and 2 deletions
|
@ -11222,7 +11222,13 @@ (define-public python-validictory
|
|||
The schema format is based on the JSON Schema
|
||||
proposal (http://json-schema.org), so combined with json the library is also
|
||||
useful as a validator for JSON data.")
|
||||
(license license:expat)))
|
||||
(license license:expat)
|
||||
(properties `((python2-variant . ,(delay python2-validictory))))))
|
||||
|
||||
(define-public python2-validictory
|
||||
(package-with-python2 python-validictory))
|
||||
(let ((base (package-with-python2
|
||||
(strip-python2-variant python-validictory))))
|
||||
(package
|
||||
(inherit base)
|
||||
(native-inputs `(("python2-setuptools" ,python2-setuptools)
|
||||
,@(package-native-inputs base))))))
|
||||
|
|
Loading…
Reference in a new issue