mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 04:45:39 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
26 lines
542 B
Nix
26 lines
542 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;
|
|
};
|
|
|
|
}
|