2017-10-15 16:04:08 +02:00
|
|
|
{ stdenv, buildPythonPackage, fetchFromGitHub, pytest, libsodium }:
|
2017-03-18 19:51:25 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "libnacl";
|
2020-01-22 15:31:39 +01:00
|
|
|
version = "1.7.1";
|
2017-03-18 19:51:25 +01:00
|
|
|
|
2017-10-15 16:04:08 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "saltstack";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-01-22 15:31:39 +01:00
|
|
|
sha256 = "10rpim9lf0qd861a3miq8iqg8w87slqwqni7nq66h72jdk130axg";
|
2017-03-18 19:51:25 +01:00
|
|
|
};
|
|
|
|
|
2019-02-15 10:08:27 +01:00
|
|
|
checkInputs = [ pytest ];
|
2017-03-19 20:58:41 +01:00
|
|
|
propagatedBuildInputs = [ libsodium ];
|
2017-03-18 19:51:25 +01:00
|
|
|
|
2018-09-16 08:24:49 +02: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";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://pypi.python.org/pypi/libnacl";
|
2017-03-19 20:58:41 +01:00
|
|
|
license = licenses.asl20;
|
2018-09-16 08:24:49 +02:00
|
|
|
platforms = platforms.unix;
|
2017-03-18 19:51:25 +01:00
|
|
|
};
|
2017-03-19 20:58:41 +01:00
|
|
|
}
|