nixpkgs/pkgs/development/python-modules/python-gnupg/default.nix
Robert Scott 9ca4f39b97 python.pkgs.python-gnupg: disable failing test test_search_keys
reading the code, it's hard to see how this test was *ever* supposed to
pass. interestingly, peeking across the fence, guix have disabled this test
too for the same reason.

note that tests don't actually run *at all* on py27 but that's a problem
for another day
2017-09-23 19:01:41 +02:00

32 lines
939 B
Nix

{ 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'" \
--replace "test_search_keys" "disabled__test_search_keys"
'';
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;
};
}