Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pgpdump / default.nix
blobe952ced742c6eb0103b5df4afd37a7afb88213a6
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "pgpdump";
8   version = "1.5";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "0s4nh8h7qsdj2yf29bspjs1zvxd4lcd11r6g11dp7fppgf2h0iqw";
13   };
15   # Disabling check because of: https://github.com/toofishes/python-pgpdump/issues/18
16   doCheck = false;
18   meta = with lib; {
19     description = "Python library for parsing PGP packets";
20     homepage = "https://github.com/toofishes/python-pgpdump";
21     license = licenses.bsd3;
22   };