From 229ad120d473360c1e575529c0e105f76a0add54 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 22 Sep 2015 14:59:13 +0200 Subject: gnu: Add python-setuptools-scm. * gnu/packages/python.scm (python-setuptools-scm, python2-setuptools-scm): New variables. --- gnu/packages/python.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'gnu/packages/python.scm') diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index b999b832cc..bf21e9aa99 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -3763,6 +3763,30 @@ child application and control it as if a human were typing commands.") (define-public python2-pexpect (package-with-python2 python-pexpect)) +(define-public python-setuptools-scm + (package + (name "python-setuptools-scm") + (version "1.8.0") + (source (origin + (method url-fetch) + (uri (string-append "https://pypi.python.org/packages/source/s/" + "setuptools_scm/setuptools_scm-" + version ".tar.bz2")) + (sha256 + (base32 + "00p60v2yfqy1r58pjcx9wy6dvqd7wkpfs5z1dzwf7y75c1g3dgyx")))) + (build-system python-build-system) + (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 +@dfn{software configuration management} (SCM) metadata instead of declaring +them as the version argument or in a SCM managed file.") + (license license:expat))) + +(define-public python2-setuptools-scm + (package-with-python2 python-setuptools-scm)) + (define-public python-ipython (package (name "python-ipython") -- cgit v1.2.3