diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2015-11-24 17:20:42 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2015-11-24 20:08:14 +0200 |
commit | 383af6b0962616ca851414a93e371522d83842f2 (patch) | |
tree | 04aaf282d0945c4dee40d6484e99cc6e2f2f6b73 | |
parent | 97003b5ccc765d481287bdb0d2a02a5db3efcb15 (diff) | |
download | guix-383af6b0962616ca851414a93e371522d83842f2.tar.gz |
gnu: python-setuptools-scm: Update to 1.9.0.
* gnu/packages/python.scm (python-setuptools-scm): Update to 1.9.0. [native-inputs]: Add python-setuptools.
-rw-r--r-- | gnu/packages/python.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index ecf02ddb8b..4edff94c68 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -13,6 +13,7 @@ ;;; Copyright © 2015 Leo Famulari <leo@famulari.name> ;;; Copyright © 2015 Ben Woodcroft <donttrustben@gmail.com> ;;; Copyright © 2015 Erik Edrosa <erik.edrosa@gmail.com> +;;; Copyright © 2015 Efraim Flashner <efraim@flashner.co.il> ;;; ;;; This file is part of GNU Guix. ;;; @@ -3895,20 +3896,19 @@ child application and control it as if a human were typing commands.") (define-public python-setuptools-scm (package (name "python-setuptools-scm") - (version "1.8.0") + (version "1.9.0") (source (origin (method url-fetch) - (uri (string-append "https://pypi.python.org/packages/source/s/" - "setuptools_scm/setuptools_scm-" - version ".tar.bz2")) + (uri (pypi-uri "setuptools_scm" version)) (sha256 (base32 - "00p60v2yfqy1r58pjcx9wy6dvqd7wkpfs5z1dzwf7y75c1g3dgyx")))) + "0y24bl893zk6nrklbvdrlmpkalf214zjn6k1xrglljd29rrn4wxi")))) (build-system python-build-system) + (native-inputs `(("python-setuptools" ,python-setuptools))) (home-page "https://github.com/pypa/setuptools_scm/") (synopsis "Manage Python package versions in SCM metadata") (description - "setuptools_scm handles managing your Python package versions in + "Setuptools_scm handles managing your Python package versions in @dfn{software configuration management} (SCM) metadata instead of declaring them as the version argument or in a SCM managed file.") (license license:expat))) |