mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
50 lines
984 B
Nix
50 lines
984 B
Nix
{ lib
|
|
, pythonOlder
|
|
, fetchFromGitHub
|
|
, buildPythonPackage
|
|
, setuptools
|
|
, pyasn1
|
|
, cryptography
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pgpy";
|
|
version = "0.6.0";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SecurityInnovation";
|
|
repo = "PGPy";
|
|
rev = "v${version}";
|
|
hash = "sha256-47YiHNxmjyCOYHHUV3Zyhs3Att9HZtCXYfbN34ooTxU=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
pyasn1
|
|
cryptography
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/SecurityInnovation/PGPy";
|
|
description = "Pretty Good Privacy for Python";
|
|
longDescription = ''
|
|
PGPy is a Python library for implementing Pretty Good Privacy into Python
|
|
programs, conforming to the OpenPGP specification per RFC 4880.
|
|
'';
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ eadwu dotlambda ];
|
|
};
|
|
}
|