pythonPackages.pynacl: 1.2.1 -> 1.3.0

This commit is contained in:
Valentin Heidelberger
2018-09-27 13:25:04 +02:00
parent 3748c250bb
commit d0199179ba
2 changed files with 3 additions and 55 deletions

View File

@@ -2,18 +2,15 @@
buildPythonPackage rec {
pname = "pynacl";
version = "1.2.1";
version = "1.3.0";
src = fetchFromGitHub {
owner = "pyca";
repo = pname;
rev = version;
sha256 = "0z9i1z4hjzmp23igyhvg131gikbrr947506lwfb3fayf0agwfv8f";
sha256 = "0ac00d5bfdmz1x428h2scq5b34llp61yhxradl94qjwz7ikqv052";
};
# 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 ];
@@ -22,7 +19,7 @@ buildPythonPackage rec {
checkPhase = ''
py.test
'';
meta = with stdenv.lib; {
maintainers = with maintainers; [ va1entin ];
description = "Python binding to the Networking and Cryptography (NaCl) library";