~ruther/guix-local

a14600ecfa6d4304418cda8668dfefdc2c1ce715 — Leo Famulari 10 years ago 519e2f4
gnu: python-jsonschema: Define 'python2-variant'.

* gnu/packages/python.scm (python-jsonschema)[properties]: New field.
(python2-jsonschema): Use 'strip-python2-variant'.
* gnu/packages/openstack.scm (python2-tempest-lib): Take the result of
'package-with-python2' directly.
2 files changed, 5 insertions(+), 8 deletions(-)

M gnu/packages/openstack.scm
M gnu/packages/python.scm
M gnu/packages/openstack.scm => gnu/packages/openstack.scm +1 -6
@@ 392,12 392,7 @@ common features used in Tempest.")
    (license asl2.0)))

(define-public python2-tempest-lib
  (let ((tempest-lib (package-with-python2 python-tempest-lib)))
    (package (inherit tempest-lib)
      (propagated-inputs
       `(("python2-jsonschema", python2-jsonschema)
         ,@(alist-delete "python-jsonschema"
                         (package-propagated-inputs tempest-lib)))))))
  (package-with-python2 python-tempest-lib))

;; Packages from the Oslo library
(define-public python-oslo.config

M gnu/packages/python.scm => gnu/packages/python.scm +4 -2
@@ 2241,10 2241,12 @@ version numbers.")
    (synopsis "Implementation of JSON Schema for Python")
    (description
     "Jsonschema is an implementation of JSON Schema for Python.")
    (license license:expat)))
    (license license:expat)
    (properties `((python2-variant . ,(delay python2-jsonschema))))))

(define-public python2-jsonschema
  (let ((jsonschema (package-with-python2 python-jsonschema)))
  (let ((jsonschema (package-with-python2
                     (strip-python2-variant python-jsonschema))))
    (package (inherit jsonschema)
      (inputs
       `(("python2-functools32" ,python2-functools32)