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

32 lines
850 B
Nix
Raw Normal View History

2017-03-19 19:58:41 +00:00
{ stdenv, buildPythonPackage, fetchPypi, pytest, libsodium }:
2017-03-18 18:51:25 +00:00
buildPythonPackage rec {
pname = "libnacl";
2017-07-28 15:49:08 +01:00
version = "1.5.2";
2017-03-18 18:51:25 +00:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-07-28 15:49:08 +01:00
sha256 = "c58390b0d191db948fc9ab681f07fdfce2a573cd012356bada47d56795d00ee2";
2017-03-18 18:51:25 +00:00
};
2017-03-19 19:58:41 +00:00
buildInputs = [ pytest ];
propagatedBuildInputs = [ libsodium ];
2017-03-18 18:51:25 +00:00
postPatch = ''
2017-03-19 19:58:41 +00:00
substituteInPlace "./libnacl/__init__.py" --replace "ctypes.cdll.LoadLibrary('libsodium.so')" "ctypes.cdll.LoadLibrary('${libsodium}/lib/libsodium.so')"
2017-03-18 18:51:25 +00:00
'';
2017-03-19 19:58:41 +00:00
checkPhase = ''
py.test
'';
meta = with stdenv.lib; {
maintainers = with maintainers; [ xvapx ];
2017-03-18 18:51:25 +00:00
description = "Python bindings for libsodium based on ctypes";
homepage = https://pypi.python.org/pypi/libnacl;
2017-03-19 19:58:41 +00:00
license = licenses.asl20;
platforms = platforms.linux;
2017-03-18 18:51:25 +00:00
};
2017-03-19 19:58:41 +00:00
}