biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pgpdump / default.nix
blob832b2e46c960ae3c4ba66407603ffd88e14f5647
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "pgpdump";
9   version = "1.5";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "0s4nh8h7qsdj2yf29bspjs1zvxd4lcd11r6g11dp7fppgf2h0iqw";
15   };
17   # Disabling check because of: https://github.com/toofishes/python-pgpdump/issues/18
18   doCheck = false;
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   };