diff options
author | Cyril Roelandt <tipecaml@gmail.com> | 2015-10-12 02:31:38 +0200 |
---|---|---|
committer | Cyril Roelandt <tipecaml@gmail.com> | 2015-11-03 21:38:13 +0100 |
commit | a3fc12daa7ee35d78180c21fa5d62616108fef53 (patch) | |
tree | 42b0be6e11486d1119f3b1c0a1641b8d9829cf4b /gnu | |
parent | 2931f46454c3755b8c478db8dbb45e48928080cd (diff) |
gnu: paramiko: Move python-pycrypto to the propagated inputs.
* gnu/packages/python.scm (python-paramiko): Move python-pycrypto to the
propagated-inputs.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index ce424675bd..4e54ef94f5 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -413,9 +413,10 @@ John the Ripper).") (build-system python-build-system) (native-inputs `(("python-setuptools" ,python-setuptools))) + (propagated-inputs + `(("python-pycrypto" ,python-pycrypto))) (inputs - `(("python-ecdsa" ,python-ecdsa) - ("python-pycrypto" ,python-pycrypto))) + `(("python-ecdsa" ,python-ecdsa))) (home-page "http://www.paramiko.org/") (synopsis "SSHv2 protocol library") (description "Paramiko is a python implementation of the SSHv2 protocol, |