about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pynacl/default.nix
blob: 463cd8044e1daa3a4567548faf36d552ecce88b2 (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
{ stdenv, buildPythonPackage, fetchFromGitHub, pytest, libsodium, cffi, six, hypothesis}:

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

  src = fetchFromGitHub {
    owner = "pyca";
    repo = pname;
    rev = version;
    sha256 = "0z9i1z4hjzmp23igyhvg131gikbrr947506lwfb3fayf0agwfv8f";
  };

  # set timeout to unlimited, remove deadline from tests, see https://github.com/pyca/pynacl/issues/370
  patches = [ ./pynacl-no-timeout-and-deadline.patch ];

  checkInputs = [ pytest hypothesis ];
  propagatedBuildInputs = [ libsodium cffi six ];

  SODIUM_INSTALL = "system";

  checkPhase = ''
    py.test
  '';
  
  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;
  };
}