nixpkgs/pkgs/development/python-modules/libnacl/default.nix

42 lines
971 B
Nix
Raw Normal View History

{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, libsodium
, pytestCheckHook
}:
2017-03-18 18:51:25 +00:00
buildPythonPackage rec {
pname = "libnacl";
version = "1.7.2";
2017-03-18 18:51:25 +00:00
src = fetchFromGitHub {
owner = "saltstack";
repo = pname;
rev = "v${version}";
sha256 = "sha256-nttR9PQimhqd2pByJ5IJzJ4RmSI4y7lcX7a7jcK+vqc=";
2017-03-18 18:51:25 +00:00
};
buildInputs = [ libsodium ];
2017-03-18 18:51:25 +00:00
postPatch =
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
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "libnacl" ];
2017-03-19 19:58:41 +00:00
meta = with lib; {
2017-03-18 18:51:25 +00:00
description = "Python bindings for libsodium based on ctypes";
homepage = "https://libnacl.readthedocs.io/";
2017-03-19 19:58:41 +00:00
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ xvapx ];
2017-03-18 18:51:25 +00:00
};
2017-03-19 19:58:41 +00:00
}