fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
25 lines
546 B
Nix
25 lines
546 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pgpdump";
|
|
version = "1.5";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0s4nh8h7qsdj2yf29bspjs1zvxd4lcd11r6g11dp7fppgf2h0iqw";
|
|
};
|
|
|
|
# Disabling check because of: https://github.com/toofishes/python-pgpdump/issues/18
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Python library for parsing PGP packets";
|
|
homepage = "https://github.com/toofishes/python-pgpdump";
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|