diff options
author | Efraim Flashner | 2019-07-29 11:18:38 -0500 |
---|---|---|
committer | Efraim Flashner | 2019-07-29 11:18:38 -0500 |
commit | 18c78b202937a3239cdccdc8c612f7df5e98bb6a (patch) | |
tree | 0f3e3e49108087a8e0349f9d324cbea6fcaaef74 /gn/packages | |
parent | 3c031ce591af76d00b1c670f0c131e1c8ffa3d4c (diff) | |
download | guix-bioinformatics-18c78b202937a3239cdccdc8c612f7df5e98bb6a.tar.gz |
gn: python-subprocess32: Correctly mark as version 3.5.3.
* gn/packages/python.scm (python-subprocess32): Re-indent.
[version]: Correct to 3.5.3, which is what the source was downloading.
[source]: Use pypi uri.
Diffstat (limited to 'gn/packages')
-rw-r--r-- | gn/packages/python.scm | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm index cd9146a..0e9a229 100644 --- a/gn/packages/python.scm +++ b/gn/packages/python.scm @@ -252,24 +252,24 @@ until a value is returned.") ) (define-public python-subprocess32 ; guix candidate -(package - (name "python-subprocess32") - (version "0.2.9") - (source - (origin - (method url-fetch) - (uri "https://files.pythonhosted.org/packages/be/2b/beeba583e9877e64db10b52a96915afc0feabf7144dcbf2a0d0ea68bf73d/subprocess32-3.5.3.tar.gz") - (sha256 - (base32 + (package + (name "python-subprocess32") + (version "3.5.3") + (source + (origin + (method url-fetch) + (uri (pypi-uri "subprocess32" version)) + (sha256 + (base32 "1hr5fan8i719hmlmz73hf8rhq74014w07d8ryg7krvvf6692kj3b")))) - (build-system python-build-system) - (arguments `(#:tests? #f)) ;; No tests. - (home-page "https://pypi.python.org/pypi/subprocess32") - (synopsis - "Python subprocess32.") - (description - "Python subprocess32.") - (license license:gpl2)) + (build-system python-build-system) + (arguments `(#:tests? #f)) ;; No tests. + (home-page "https://pypi.python.org/pypi/subprocess32") + (synopsis + "Python subprocess32.") + (description + "Python subprocess32.") + (license license:gpl2)) ) (define-public python-inotify ; guix candidate |