Files
nixpkgs/pkgs/development/python-modules/python-gnupg/default.nix
T

29 lines
866 B
Nix
Raw Normal View History

2021-01-25 09:26:54 +01:00
{ lib, buildPythonPackage, fetchPypi, gnupg }:
2017-07-18 22:37:56 +01:00
buildPythonPackage rec {
pname = "python-gnupg";
version = "0.4.6";
2017-07-18 22:37:56 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "3aa0884b3bd414652c2385b9df39e7b87272c2eca1b8fcc3089bc9e58652019a";
2017-07-18 22:37:56 +01:00
};
# Let's make the library default to our gpg binary
patchPhase = ''
substituteInPlace gnupg.py \
2019-03-20 18:23:30 +00:00
--replace "gpgbinary='gpg'" "gpgbinary='${gnupg}/bin/gpg'"
2017-07-18 22:37:56 +01:00
substituteInPlace test_gnupg.py \
2019-03-20 18:23:30 +00:00
--replace "gpgbinary=GPGBINARY" "gpgbinary='${gnupg}/bin/gpg'" \
--replace "test_search_keys" "disabled__test_search_keys"
2017-07-18 22:37:56 +01:00
'';
meta = with lib; {
2017-07-18 22:37:56 +01:00
description = "A wrapper for the Gnu Privacy Guard";
homepage = "https://pypi.python.org/pypi/python-gnupg";
2017-07-18 22:37:56 +01:00
license = licenses.bsd3;
maintainers = with maintainers; [ copumpkin ];
platforms = platforms.unix;
};
}