about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pynacl/default.nix
blob: 78fe9672a8b485fe1d3bb60133d4d66480869e00 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{ stdenv
, buildPythonPackage
, fetchPypi
, pytest
, libsodium
, cffi
, six
, hypothesis_4
}:

buildPythonPackage rec {
  pname = "pynacl";
  version = "1.3.0";

  src = fetchPypi {
    inherit version;
    pname = "PyNaCl";
    sha256 = "0c6100edd16fefd1557da078c7a31e7b7d7a52ce39fdca2bec29d4f7b6e7600c";
  };

  checkInputs = [ pytest hypothesis_4 ];
  buildInputs = [ libsodium ];
  propagatedBuildInputs = [ cffi six ];

  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," ""
  '';

  checkPhase = ''
    py.test
  '';

  # https://github.com/pyca/pynacl/issues/550
  PYTEST_ADDOPTS = "-k 'not test_wrong_types'";

  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;
  };
}