1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00

python3Packages.pynacl: use hypothesis_4

This commit is contained in:
Frederik Rietdijk 2020-05-10 09:30:37 +02:00
parent 4125c1bcb2
commit c2bafaeaaa

View file

@ -5,7 +5,7 @@
, libsodium
, cffi
, six
, hypothesis
, hypothesis_4
}:
buildPythonPackage rec {
@ -18,7 +18,7 @@ buildPythonPackage rec {
sha256 = "0c6100edd16fefd1557da078c7a31e7b7d7a52ce39fdca2bec29d4f7b6e7600c";
};
checkInputs = [ pytest hypothesis ];
checkInputs = [ pytest hypothesis_4 ];
buildInputs = [ libsodium ];
propagatedBuildInputs = [ cffi six ];