[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: python-setuptools-scm: Update to 1.9.0.
From: |
Efraim Flashner |
Subject: |
01/01: gnu: python-setuptools-scm: Update to 1.9.0. |
Date: |
Tue, 24 Nov 2015 18:16:22 +0000 |
efraim pushed a commit to branch master
in repository guix.
commit 383af6b0962616ca851414a93e371522d83842f2
Author: Efraim Flashner <address@hidden>
Date: Tue Nov 24 17:20:42 2015 +0200
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.
---
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 ecf02dd..4edff94 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -13,6 +13,7 @@
;;; Copyright © 2015 Leo Famulari <address@hidden>
;;; Copyright © 2015 Ben Woodcroft <address@hidden>
;;; Copyright © 2015 Erik Edrosa <address@hidden>
+;;; Copyright © 2015 Efraim Flashner <address@hidden>
;;;
;;; 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)))