me
/
guix
Archived
1
0
Fork 0

gnu: python-testlib: Remove useless self-defined phase "unpack".

Unzipping is now done by standard-phase "unpack" automatically.

* gnu/packages/python.scm (python-testlib, python2-testlib)[phases] No longer
  replace "unpack".
master
Hartmut Goebel 2016-10-16 22:16:58 +02:00
parent 251ed7f2fe
commit 632735f215
No known key found for this signature in database
GPG Key ID: 634A8DFFD3F631DF
1 changed files with 1 additions and 12 deletions

View File

@ -5290,18 +5290,7 @@ falling into the Python interpreter.")
(base32 "1mz26cxn4x8bbgv0rn0mvj2z05y31rkc8009nvdlb3lam5b4mj3y"))))
(build-system python-build-system)
(native-inputs
`(("unzip" ,unzip)))
(arguments
`(#:phases
(alist-replace
'unpack
(lambda* (#:key inputs outputs #:allow-other-keys)
(let ((unzip (string-append (assoc-ref inputs "unzip")
"/bin/unzip"))
(source (assoc-ref inputs "source")))
(and (zero? (system* unzip source))
(chdir (string-append "testlib-" ,version)))))
%standard-phases)))
`(("unzip" ,unzip))) ; for unpacking the source
(synopsis "Python micro test suite harness")
(description "A micro unittest suite harness for Python.")
(home-page "https://github.com/trentm/testlib")