Skip to content

Commit

Permalink
Merge pull request #29353 from disassembler/pgpdump
Browse files Browse the repository at this point in the history
pgpdump: disable tests
(cherry picked from commit 56f8b36)
  • Loading branch information
FRidh committed Sep 15, 2017
1 parent e13c497 commit baee496
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -20395,13 +20395,18 @@ in {

sqlmap = callPackage ../development/python-modules/sqlmap { };
pgpdump = self.buildPythonPackage rec {
name = "pgpdump-1.5";
pname = "pgpdump";
version = "1.5";
name = "${pname}-${version}";

src = pkgs.fetchurl {
url = "mirror://pypi/p/pgpdump/pgpdump-1.5.tar.gz";
sha256 = "1c4700857bf7ba735b08cfe4101aa3a4f5fd839657af249c17b2697c20829668";
src = fetchPypi {
inherit pname version;
sha256 = "0s4nh8h7qsdj2yf29bspjs1zvxd4lcd11r6g11dp7fppgf2h0iqw";
};

# Disabling check because of: https://github.com/toofishes/python-pgpdump/issues/18
doCheck = false;

meta = {
description = "Python library for parsing PGP packets";
homepage = https://github.com/toofishes/python-pgpdump;
Expand Down

0 comments on commit baee496

Please sign in to comment.