pythonPackages.libnacl: enable tests
This commit is contained in:
parent
c883cefc6f
commit
597865725f
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi, pkgs }:
|
{ stdenv, buildPythonPackage, fetchPypi, pytest, libsodium }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "libnacl";
|
pname = "libnacl";
|
||||||
@ -10,17 +10,22 @@ buildPythonPackage rec {
|
|||||||
sha256 = "1ph042x0cfysj16mmjif40pxn505rg5c9n94s972dgc0mfgvrwhs";
|
sha256 = "1ph042x0cfysj16mmjif40pxn505rg5c9n94s972dgc0mfgvrwhs";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ pkgs.libsodium ];
|
buildInputs = [ pytest ];
|
||||||
|
propagatedBuildInputs = [ libsodium ];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace "./libnacl/__init__.py" --replace "ctypes.cdll.LoadLibrary('libsodium.so')" "ctypes.cdll.LoadLibrary('${pkgs.libsodium}/lib/libsodium.so')"
|
substituteInPlace "./libnacl/__init__.py" --replace "ctypes.cdll.LoadLibrary('libsodium.so')" "ctypes.cdll.LoadLibrary('${libsodium}/lib/libsodium.so')"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
checkPhase = ''
|
||||||
maintainers = with stdenv.lib.maintainers; [ xvapx ];
|
py.test
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
maintainers = with maintainers; [ xvapx ];
|
||||||
description = "Python bindings for libsodium based on ctypes";
|
description = "Python bindings for libsodium based on ctypes";
|
||||||
homepage = "https://pypi.python.org/pypi/libnacl";
|
homepage = "https://pypi.python.org/pypi/libnacl";
|
||||||
license = stdenv.lib.licenses.asl20;
|
license = licenses.asl20;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -13867,7 +13867,9 @@ in {
|
|||||||
clblas = pkgs.clblas-cuda;
|
clblas = pkgs.clblas-cuda;
|
||||||
};
|
};
|
||||||
|
|
||||||
libnacl = callPackage ../development/python-modules/libnacl/default.nix { };
|
libnacl = callPackage ../development/python-modules/libnacl/default.nix {
|
||||||
|
inherit (pkgs) libsodium;
|
||||||
|
};
|
||||||
|
|
||||||
libplist = if isPy3k then throw "libplist not supported for interpreter ${python.executable}" else
|
libplist = if isPy3k then throw "libplist not supported for interpreter ${python.executable}" else
|
||||||
(pkgs.libplist.override{python2Packages=self; }).py;
|
(pkgs.libplist.override{python2Packages=self; }).py;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user