2021-01-25 09:26:54 +01:00
|
|
|
{ lib
|
2019-02-24 19:45:56 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2021-05-26 20:25:53 +02:00
|
|
|
, pytestCheckHook
|
|
|
|
, pythonOlder
|
2019-02-24 19:45:56 +01:00
|
|
|
, libsodium
|
|
|
|
, cffi
|
2020-11-29 16:14:54 +01:00
|
|
|
, hypothesis
|
2019-02-24 19:45:56 +01:00
|
|
|
}:
|
2018-02-11 00:01:48 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pynacl";
|
2020-10-15 23:33:57 +02:00
|
|
|
version = "1.4.0";
|
2021-05-26 20:25:53 +02:00
|
|
|
disabled = pythonOlder "3.6";
|
2018-02-11 00:01:48 +01:00
|
|
|
|
2019-02-24 19:45:56 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit version;
|
|
|
|
pname = "PyNaCl";
|
2020-10-15 23:33:57 +02:00
|
|
|
sha256 = "01b56hxrbif3hx8l6rwz5kljrgvlbj7shmmd2rjh0hn7974a5sal";
|
2018-02-11 00:01:48 +01:00
|
|
|
};
|
|
|
|
|
2021-05-26 20:25:53 +02:00
|
|
|
buildInputs = [
|
|
|
|
libsodium
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
cffi
|
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
hypothesis
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
2018-02-11 00:01:48 +01:00
|
|
|
|
2018-02-18 18:02:18 +01:00
|
|
|
SODIUM_INSTALL = "system";
|
|
|
|
|
2021-05-26 20:25:53 +02:00
|
|
|
pythonImportsCheck = [ "nacl" ];
|
2018-09-27 13:25:04 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-02-11 00:01:48 +01:00
|
|
|
description = "Python binding to the Networking and Cryptography (NaCl) library";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/pyca/pynacl/";
|
2018-02-11 00:01:48 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|