summary refs log tree commit diff
path: root/pkgs/development/python-modules/pgpdump/default.nix
blob: ea9ef0a156f0642c9f1c4ab3be9b90724c918b9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "pgpdump";
  version = "1.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0s4nh8h7qsdj2yf29bspjs1zvxd4lcd11r6g11dp7fppgf2h0iqw";
  };

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

  meta = with stdenv.lib; {
    description = "Python library for parsing PGP packets";
    homepage = https://github.com/toofishes/python-pgpdump;
    license = licenses.bsd3;
  };

}