2021-02-17 03:01:39 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, libsodium
|
|
|
|
, pytestCheckHook
|
|
|
|
}:
|
2017-03-18 18:51:25 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "libnacl";
|
2021-02-17 03:01:39 +00:00
|
|
|
version = "1.7.2";
|
2017-03-18 18:51:25 +00:00
|
|
|
|
2017-10-15 15:04:08 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "saltstack";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-02-17 03:01:39 +00:00
|
|
|
sha256 = "sha256-nttR9PQimhqd2pByJ5IJzJ4RmSI4y7lcX7a7jcK+vqc=";
|
2017-03-18 18:51:25 +00:00
|
|
|
};
|
|
|
|
|
2021-02-17 03:01:39 +00:00
|
|
|
buildInputs = [ libsodium ];
|
2017-03-18 18:51:25 +00:00
|
|
|
|
2018-09-16 07:24:49 +01:00
|
|
|
postPatch =
|
2021-02-17 03:01:39 +00:00
|
|
|
let soext = stdenv.hostPlatform.extensions.sharedLibrary; in
|
|
|
|
''
|
|
|
|
substituteInPlace "./libnacl/__init__.py" --replace \
|
|
|
|
"ctypes.cdll.LoadLibrary('libsodium${soext}')" \
|
|
|
|
"ctypes.cdll.LoadLibrary('${libsodium}/lib/libsodium${soext}')"
|
|
|
|
'';
|
2017-03-18 18:51:25 +00:00
|
|
|
|
2021-02-17 03:01:39 +00:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "libnacl" ];
|
2017-03-19 19:58:41 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-03-18 18:51:25 +00:00
|
|
|
description = "Python bindings for libsodium based on ctypes";
|
2021-02-17 03:01:39 +00:00
|
|
|
homepage = "https://libnacl.readthedocs.io/";
|
2017-03-19 19:58:41 +00:00
|
|
|
license = licenses.asl20;
|
2018-09-16 07:24:49 +01:00
|
|
|
platforms = platforms.unix;
|
2021-02-17 03:01:39 +00:00
|
|
|
maintainers = with maintainers; [ xvapx ];
|
2017-03-18 18:51:25 +00:00
|
|
|
};
|
2017-03-19 19:58:41 +00:00
|
|
|
}
|