mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
pythonPackages.libnacl: init at 1.5.0
This commit is contained in:
parent
8498f979a1
commit
c883cefc6f
@ -538,6 +538,7 @@
|
||||
wscott = "Wayne Scott <wsc9tt@gmail.com>";
|
||||
wyvie = "Elijah Rum <elijahrum@gmail.com>";
|
||||
xnwdd = "Guillermo NWDD <nwdd+nixos@no.team>";
|
||||
xvapx = "Marti Serra <marti.serra.coscollano@gmail.com>";
|
||||
xwvvvvwx = "David Terry <davidterry@posteo.de>";
|
||||
yarr = "Dmitry V. <savraz@gmail.com>";
|
||||
yochai = "Yochai <yochai@titat.info>";
|
||||
|
26
pkgs/development/python-modules/libnacl/default.nix
Normal file
26
pkgs/development/python-modules/libnacl/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, pkgs }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "libnacl";
|
||||
version = "1.5.0";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1ph042x0cfysj16mmjif40pxn505rg5c9n94s972dgc0mfgvrwhs";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pkgs.libsodium ];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace "./libnacl/__init__.py" --replace "ctypes.cdll.LoadLibrary('libsodium.so')" "ctypes.cdll.LoadLibrary('${pkgs.libsodium}/lib/libsodium.so')"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
maintainers = with stdenv.lib.maintainers; [ xvapx ];
|
||||
description = "Python bindings for libsodium based on ctypes";
|
||||
homepage = "https://pypi.python.org/pypi/libnacl";
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
@ -13867,6 +13867,8 @@ in {
|
||||
clblas = pkgs.clblas-cuda;
|
||||
};
|
||||
|
||||
libnacl = callPackage ../development/python-modules/libnacl/default.nix { };
|
||||
|
||||
libplist = if isPy3k then throw "libplist not supported for interpreter ${python.executable}" else
|
||||
(pkgs.libplist.override{python2Packages=self; }).py;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user