2017-07-18 22:37:56 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, gnupg1 }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "python-gnupg";
|
2019-01-24 22:16:31 +00:00
|
|
|
version = "0.4.4";
|
2017-07-18 22:37:56 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-01-24 22:16:31 +00:00
|
|
|
sha256 = "45daf020b370bda13a1429c859fcdff0b766c0576844211446f9266cae97fb0e";
|
2017-07-18 22:37:56 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# Let's make the library default to our gpg binary
|
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace gnupg.py \
|
|
|
|
--replace "gpgbinary='gpg'" "gpgbinary='${gnupg1}/bin/gpg'"
|
|
|
|
substituteInPlace test_gnupg.py \
|
2017-09-23 17:58:19 +01:00
|
|
|
--replace "gpgbinary=GPGBINARY" "gpgbinary='${gnupg1}/bin/gpg'" \
|
|
|
|
--replace "test_search_keys" "disabled__test_search_keys"
|
2017-07-18 22:37:56 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A wrapper for the Gnu Privacy Guard";
|
|
|
|
homepage = https://pypi.python.org/pypi/python-gnupg;
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ copumpkin ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|