Merge pull request #27472 from mguentner/python-gnupg
python-gnupg: 0.4.0 -> 0.4.1 and enable tests
This commit is contained in:
commit
2f9f70ba89
|
@ -0,0 +1,30 @@
|
||||||
|
{ stdenv, buildPythonPackage, fetchPypi, gnupg1 }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
pname = "python-gnupg";
|
||||||
|
version = "0.4.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "06hfw9cmiw5306fyisp3kzg1hww260qzip829g7y7pj1mwpb0izg";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ gnupg1 ];
|
||||||
|
|
||||||
|
# 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 \
|
||||||
|
--replace "gpgbinary=GPGBINARY" "gpgbinary='${gnupg1}/bin/gpg'"
|
||||||
|
'';
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -515,33 +515,7 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
python-gnupg = buildPythonPackage rec {
|
python-gnupg = callPackage ../development/python-modules/python-gnupg {};
|
||||||
name = "python-gnupg-${version}";
|
|
||||||
version = "0.4.0";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/p/python-gnupg/${name}.tar.gz";
|
|
||||||
sha256 = "1yd88acafs9nwk6gzpbxjzpx0zd04qrvc6hmwhj1i89ghm2g7ap6";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = [ pkgs.gnupg1 ];
|
|
||||||
|
|
||||||
# Let's make the library default to our gpg binary
|
|
||||||
patchPhase = ''
|
|
||||||
substituteInPlace gnupg.py \
|
|
||||||
--replace "gpgbinary='gpg'" "gpgbinary='${pkgs.gnupg1}/bin/gpg'"
|
|
||||||
'';
|
|
||||||
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
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;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
python-uinput = buildPythonPackage rec {
|
python-uinput = buildPythonPackage rec {
|
||||||
name = "python-uinput-${version}";
|
name = "python-uinput-${version}";
|
||||||
|
|
Loading…
Reference in New Issue