1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "pgpdump";
9 version = "1.5";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "0s4nh8h7qsdj2yf29bspjs1zvxd4lcd11r6g11dp7fppgf2h0iqw";
15 };
16
17 # Disabling check because of: https://github.com/toofishes/python-pgpdump/issues/18
18 doCheck = false;
19
20 meta = with lib; {
21 description = "Python library for parsing PGP packets";
22 homepage = "https://github.com/toofishes/python-pgpdump";
23 license = licenses.bsd3;
24 };
25}