mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
54 lines
944 B
Nix
54 lines
944 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pytestCheckHook,
|
|
sphinxHook,
|
|
pythonOlder,
|
|
libsodium,
|
|
cffi,
|
|
hypothesis,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pynacl";
|
|
version = "1.5.0";
|
|
outputs = [
|
|
"out"
|
|
"doc"
|
|
];
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "PyNaCl";
|
|
sha256 = "8ac7448f09ab85811607bdd21ec2464495ac8b7c66d146bf545b0f08fb9220ba";
|
|
};
|
|
|
|
nativeBuildInputs = [ sphinxHook ];
|
|
|
|
buildInputs = [ libsodium ];
|
|
|
|
propagatedNativeBuildInputs = [ cffi ];
|
|
|
|
propagatedBuildInputs = [ cffi ];
|
|
|
|
nativeCheckInputs = [
|
|
hypothesis
|
|
pytestCheckHook
|
|
];
|
|
|
|
SODIUM_INSTALL = "system";
|
|
|
|
pythonImportsCheck = [ "nacl" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python binding to the Networking and Cryptography (NaCl) library";
|
|
homepage = "https://github.com/pyca/pynacl/";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|