diff options
author | Christopher Baines <mail@cbaines.net> | 2018-03-24 10:54:07 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-12-31 09:22:53 +0000 |
commit | c8558c418e8ac60f1a127862a2ec1984ee0cb661 (patch) | |
tree | bfd4f1d3800a3fa06b0cdd00e5a4eb7cc6a4f949 /gnu | |
parent | 10ffb332b79baca5aa3e1348a47ce30c821a7ad1 (diff) | |
download | gnu-guix-c8558c418e8ac60f1a127862a2ec1984ee0cb661.tar gnu-guix-c8558c418e8ac60f1a127862a2ec1984ee0cb661.tar.gz |
gnu: Add python-dependency-management.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 4ac113796e..ed1868e578 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -15162,3 +15162,25 @@ class in a @acronym{DRY, Don't Repeat Yourself} way.") (synopsis "A collection of coala utilities.") (description "A collection of coala utilities.") (license #f))) + +(define-public python-dependency-management + (package + (name "python-dependency-management") + (version "0.4.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "dependency_management" version)) + (sha256 + (base32 + "0q5axi5vzla6vfgs8r5mxczih3w0vipa17mqkx2zcirxvy131i7h")))) + (build-system python-build-system) + (arguments + '(#:tests? #f)) + (propagated-inputs + `(("python-coala-utils" ,python-coala-utils) + ("python-sarge" ,python-sarge))) + (home-page "https://gitlab.com/coala/package_manager") + (synopsis "coala Dependency Management") + (description "coala Dependency Management") + (license #f))) |