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

34 lines
935 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchFromGitHub, pytest, libsodium }:
2017-03-18 19:51:25 +01:00
buildPythonPackage rec {
pname = "libnacl";
version = "1.7.1";
2017-03-18 19:51:25 +01:00
src = fetchFromGitHub {
owner = "saltstack";
repo = pname;
rev = "v${version}";
sha256 = "10rpim9lf0qd861a3miq8iqg8w87slqwqni7nq66h72jdk130axg";
2017-03-18 19:51:25 +01:00
};
checkInputs = [ pytest ];
2017-03-19 20:58:41 +01:00
propagatedBuildInputs = [ libsodium ];
2017-03-18 19:51:25 +01: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 19:51:25 +01:00
'';
2017-03-19 20:58:41 +01:00
checkPhase = ''
py.test
'';
meta = with stdenv.lib; {
maintainers = with maintainers; [ xvapx ];
2017-03-18 19:51:25 +01:00
description = "Python bindings for libsodium based on ctypes";
homepage = "https://pypi.python.org/pypi/libnacl";
2017-03-19 20:58:41 +01:00
license = licenses.asl20;
platforms = platforms.unix;
2017-03-18 19:51:25 +01:00
};
2017-03-19 20:58:41 +01:00
}