depot/third_party/nixpkgs/pkgs/development/python-modules/python-gnupg/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

46 lines
1 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
gnupg,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "python-gnupg";
version = "0.5.2";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-AdgBOTHJ+j9Fgku+pwVMA9bhHyWKcufghuFo28uRhUw=";
};
postPatch = ''
substituteInPlace gnupg.py \
--replace "gpgbinary='gpg'" "gpgbinary='${gnupg}/bin/gpg'"
substituteInPlace test_gnupg.py \
--replace "os.environ.get('GPGBINARY', 'gpg')" "os.environ.get('GPGBINARY', '${gnupg}/bin/gpg')"
'';
nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [
# network access
"test_search_keys"
];
pythonImportsCheck = [ "gnupg" ];
meta = with lib; {
description = "API for the GNU Privacy Guard (GnuPG)";
homepage = "https://github.com/vsajip/python-gnupg";
changelog = "https://github.com/vsajip/python-gnupg/releases/tag/${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ copumpkin ];
};
}