Merge pull request #24020 from xvapx/add/libnacl-1.5.0
pythonPackages.libnacl: init at 1.5.0
This commit is contained in:
commit
8490317fef
@ -541,6 +541,7 @@
|
|||||||
wscott = "Wayne Scott <wsc9tt@gmail.com>";
|
wscott = "Wayne Scott <wsc9tt@gmail.com>";
|
||||||
wyvie = "Elijah Rum <elijahrum@gmail.com>";
|
wyvie = "Elijah Rum <elijahrum@gmail.com>";
|
||||||
xnwdd = "Guillermo NWDD <nwdd+nixos@no.team>";
|
xnwdd = "Guillermo NWDD <nwdd+nixos@no.team>";
|
||||||
|
xvapx = "Marti Serra <marti.serra.coscollano@gmail.com>";
|
||||||
xwvvvvwx = "David Terry <davidterry@posteo.de>";
|
xwvvvvwx = "David Terry <davidterry@posteo.de>";
|
||||||
yarr = "Dmitry V. <savraz@gmail.com>";
|
yarr = "Dmitry V. <savraz@gmail.com>";
|
||||||
yochai = "Yochai <yochai@titat.info>";
|
yochai = "Yochai <yochai@titat.info>";
|
||||||
|
31
pkgs/development/python-modules/libnacl/default.nix
Normal file
31
pkgs/development/python-modules/libnacl/default.nix
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi, pytest, libsodium }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "libnacl";
|
||||||
|
version = "1.5.0";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1ph042x0cfysj16mmjif40pxn505rg5c9n94s972dgc0mfgvrwhs";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pytest ];
|
||||||
|
propagatedBuildInputs = [ libsodium ];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace "./libnacl/__init__.py" --replace "ctypes.cdll.LoadLibrary('libsodium.so')" "ctypes.cdll.LoadLibrary('${libsodium}/lib/libsodium.so')"
|
||||||
|
'';
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
py.test
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
maintainers = with maintainers; [ xvapx ];
|
||||||
|
description = "Python bindings for libsodium based on ctypes";
|
||||||
|
homepage = "https://pypi.python.org/pypi/libnacl";
|
||||||
|
license = licenses.asl20;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -13915,6 +13915,10 @@ in {
|
|||||||
clblas = pkgs.clblas-cuda;
|
clblas = pkgs.clblas-cuda;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
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…
Reference in New Issue
Block a user