Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pgpdump / default.nix
blobd3f87c9e1947620384cd9c15ed7964c2df264a2a
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "pgpdump";
8   version = "1.5";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "0s4nh8h7qsdj2yf29bspjs1zvxd4lcd11r6g11dp7fppgf2h0iqw";
14   };
16   # Disabling check because of: https://github.com/toofishes/python-pgpdump/issues/18
17   doCheck = false;
19   meta = with lib; {
20     description = "Python library for parsing PGP packets";
21     homepage = "https://github.com/toofishes/python-pgpdump";
22     license = licenses.bsd3;
23   };