mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
python3Packages.pynacl: add cffi dependency also at runtime
This commit is contained in:
parent
2700a57e95
commit
770c364217
|
@ -15,6 +15,8 @@ buildPythonPackage rec {
|
|||
|
||||
propagatedBuildInputs = [ six ] ++ lib.optional (!isPyPy) cffi;
|
||||
|
||||
propagatedNativeBuildInputs = lib.optional (!isPyPy) cffi;
|
||||
|
||||
meta = with lib; {
|
||||
maintainers = with maintainers; [ domenkozar ];
|
||||
description = "Modern password hashing for your software and your servers";
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
, libsodium
|
||||
, cffi
|
||||
, hypothesis
|
||||
, stdenv
|
||||
, six
|
||||
}:
|
||||
|
||||
|
@ -29,6 +30,7 @@ buildPythonPackage rec {
|
|||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
cffi
|
||||
six
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in a new issue