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-06-21 08:03:40 +01:00
|
|
|
version = "1.5.1";
|
2017-03-18 18:51:25 +00:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-06-21 08:03:40 +01:00
|
|
|
sha256 = "e44e9436e7245b0d8b7322bef67750cb7757834d7ccdb7eb7b723b4813df84fb";
|
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
|
|
|
}
|