diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2016-10-13 14:54:38 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2016-11-15 22:31:10 +0100 |
commit | e165f137d8f5ace7bcfa03dc096b0793a1e45267 (patch) | |
tree | 6a17161e226d9e3baac9736194ae398b9d62a32e | |
parent | ef7451131a13b48adf8eea5d402caee8a5e5c344 (diff) | |
download | guix-e165f137d8f5ace7bcfa03dc096b0793a1e45267.tar guix-e165f137d8f5ace7bcfa03dc096b0793a1e45267.tar.gz |
gnu: python-ccm: Add missing input python-psutil.
* gnu/packages/python.scm (python-ccm) [propagated-inouts]: Add
python-psutil.
-rw-r--r-- | gnu/packages/python.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 77e4298d49..578207920a 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -618,6 +618,9 @@ making them easy to handle and incorporate into other protocols.") (build-system python-build-system) (propagated-inputs `(("python-pyyaml" ,python-pyyaml) + ;; Not listed in setup.py, but used in ccmlib/node.py for full + ;; functionality + ("python-psutil" ,python-psutil) ("python-six" ,python-six))) (home-page "https://github.com/pcmanus/ccm") (synopsis "Cassandra Cluster Manager") |