Merge pull request #29353 from disassembler/pgpdump
pgpdump: disable tests
This commit is contained in:
commit
56f8b3626f
@ -20228,13 +20228,18 @@ in {
|
|||||||
|
|
||||||
sqlmap = callPackage ../development/python-modules/sqlmap { };
|
sqlmap = callPackage ../development/python-modules/sqlmap { };
|
||||||
pgpdump = self.buildPythonPackage rec {
|
pgpdump = self.buildPythonPackage rec {
|
||||||
name = "pgpdump-1.5";
|
pname = "pgpdump";
|
||||||
|
version = "1.5";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = fetchPypi {
|
||||||
url = "mirror://pypi/p/pgpdump/pgpdump-1.5.tar.gz";
|
inherit pname version;
|
||||||
sha256 = "1c4700857bf7ba735b08cfe4101aa3a4f5fd839657af249c17b2697c20829668";
|
sha256 = "0s4nh8h7qsdj2yf29bspjs1zvxd4lcd11r6g11dp7fppgf2h0iqw";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Disabling check because of: https://github.com/toofishes/python-pgpdump/issues/18
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Python library for parsing PGP packets";
|
description = "Python library for parsing PGP packets";
|
||||||
homepage = https://github.com/toofishes/python-pgpdump;
|
homepage = https://github.com/toofishes/python-pgpdump;
|
||||||
|
Loading…
Reference in New Issue
Block a user