mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00: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 New Issue
Block a user