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

34 lines
891 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.6.0";
2017-03-18 19:51:25 +01:00
name = "${pname}-${version}";
src = fetchFromGitHub {
owner = "saltstack";
repo = pname;
rev = "v${version}";
sha256 = "0iaql3mrj3hf48km8177bi6nmjdar26kmqjc3jw8mrjc940v99fk";
2017-03-18 19:51:25 +01:00
};
2017-03-19 20:58:41 +01:00
buildInputs = [ pytest ];
propagatedBuildInputs = [ libsodium ];
2017-03-18 19:51:25 +01:00
postPatch = ''
2017-03-19 20:58:41 +01:00
substituteInPlace "./libnacl/__init__.py" --replace "ctypes.cdll.LoadLibrary('libsodium.so')" "ctypes.cdll.LoadLibrary('${libsodium}/lib/libsodium.so')"
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.linux;
2017-03-18 19:51:25 +01:00
};
2017-03-19 20:58:41 +01:00
}