~ruther/guix-local

0adc21c2933fbe47ee37d90acdb4ad8cbc60ed69 — Efraim Flashner 9 years ago fa8af53
gnu: Add python2-pytest-cache.

* gnu/packages/python.scm (python2-pytest-cache): New variable.
(python-pytest-cache)[properties]: New field.
1 files changed, 11 insertions(+), 1 deletions(-)

M gnu/packages/python.scm
M gnu/packages/python.scm => gnu/packages/python.scm +11 -1
@@ 7091,7 7091,17 @@ minimal and fast API targetting the following uses:
    (description "The pytest-cache plugin provides tools to rerun failures from
the last py.test invocation.")
    (home-page "https://bitbucket.org/hpk42/pytest-cache/")
    (license license:expat)))
    (license license:expat)
    (properties `((python2-variant . ,(delay python2-pytest-cache))))))

(define-public python2-pytest-cache
  (let ((pytest-cache (package-with-python2
                        (strip-python2-variant python-pytest-cache))))
    (package
      (inherit pytest-cache)
      (native-inputs
       `(("python2-setuptools" ,python2-setuptools)
         ,@(package-native-inputs pytest-cache))))))

(define-public python-pytest-localserver
  (package