1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 10:56:53 +00:00
nixpkgs/pkgs/development/python-modules/libnacl/default.nix
2017-07-28 16:56:33 +02:00

32 lines
852 B
Nix

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