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

34 lines
933 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchFromGitHub, pytest, libsodium }:
2017-03-18 18:51:25 +00:00
buildPythonPackage rec {
pname = "libnacl";
2017-11-12 08:49:14 +00:00
version = "1.6.1";
2017-03-18 18:51:25 +00:00
src = fetchFromGitHub {
owner = "saltstack";
repo = pname;
rev = "v${version}";
2017-11-12 08:49:14 +00:00
sha256 = "05iamhbsqm8binqhc2zchfqdkajlx2icf8xl5vkd5fbrhw6yylad";
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 =
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
'';
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.unix;
2017-03-18 18:51:25 +00:00
};
2017-03-19 19:58:41 +00:00
}