Files
nixpkgs/pkgs/development/python-modules/pagelabels/default.nix
T
Alexis Hildebrandt bf995e3641 treewide: Remove ending period from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
2024-06-09 23:04:51 +02:00

30 lines
586 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pdfrw,
}:
buildPythonPackage rec {
pname = "pagelabels";
version = "1.2.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "07as5kzyvj66bfgvx8bph8gkyj6cgm4lhgxwb78bpdl4m8y8kpma";
};
buildInputs = [ pdfrw ];
# upstream doesn't contain tests
doCheck = false;
meta = with lib; {
description = "Python library to manipulate PDF page labels";
homepage = "https://github.com/lovasoa/pagelabels-py";
maintainers = with maintainers; [ teto ];
license = licenses.gpl3;
};
}