nixpkgs/pkgs/development/python-modules/pynacl/default.nix

48 lines
1,019 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, pytest
, libsodium
, cffi
, six
, hypothesis
}:
2018-02-10 23:01:48 +00:00
buildPythonPackage rec {
pname = "pynacl";
2018-09-27 11:25:04 +00:00
version = "1.3.0";
2018-02-10 23:01:48 +00:00
src = fetchPypi {
inherit version;
pname = "PyNaCl";
sha256 = "0c6100edd16fefd1557da078c7a31e7b7d7a52ce39fdca2bec29d4f7b6e7600c";
2018-02-10 23:01:48 +00:00
};
2018-02-18 17:01:56 +00:00
checkInputs = [ pytest hypothesis ];
buildInputs = [ libsodium ];
propagatedBuildInputs = [ cffi six ];
2018-02-10 23:01:48 +00:00
SODIUM_INSTALL = "system";
# fixed in next release 1.3.0+
# https://github.com/pyca/pynacl/pull/480
postPatch = ''
substituteInPlace tests/test_bindings.py \
--replace "average_size=128," ""
'';
2018-02-10 23:01:48 +00:00
checkPhase = ''
2018-02-18 17:01:56 +00:00
py.test
2018-02-10 23:01:48 +00:00
'';
2018-09-27 11:25:04 +00:00
# https://github.com/pyca/pynacl/issues/550
PYTEST_ADDOPTS = "-k 'not test_wrong_types'";
2018-02-10 23:01:48 +00:00
meta = with stdenv.lib; {
maintainers = with maintainers; [ va1entin ];
description = "Python binding to the Networking and Cryptography (NaCl) library";
homepage = https://github.com/pyca/pynacl/;
license = licenses.asl20;
};
}