29 lines
866 B
Nix
29 lines
866 B
Nix
{ lib, buildPythonPackage, fetchPypi, gnupg }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-gnupg";
|
|
version = "0.4.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "2061f56b1942c29b92727bf9aecbd3cea3893acc9cccbdc7eb4604285efe4ac7";
|
|
};
|
|
|
|
# Let's make the library default to our gpg binary
|
|
patchPhase = ''
|
|
substituteInPlace gnupg.py \
|
|
--replace "gpgbinary='gpg'" "gpgbinary='${gnupg}/bin/gpg'"
|
|
substituteInPlace test_gnupg.py \
|
|
--replace "gpgbinary=GPGBINARY" "gpgbinary='${gnupg}/bin/gpg'" \
|
|
--replace "test_search_keys" "disabled__test_search_keys"
|
|
'';
|
|
|
|
meta = with 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;
|
|
};
|
|
}
|