mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 09:36:32 +01:00
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
25 lines
540 B
Nix
25 lines
540 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 = {
|
|
description = "Python library for parsing PGP packets";
|
|
homepage = "https://github.com/toofishes/python-pgpdump";
|
|
license = lib.licenses.bsd3;
|
|
};
|
|
}
|