mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
060743a6ae
* python311Packages.pydyf: 0.8.0 -> 0.9.0 * python311Packages.pydyf: drop support for python 3.7 --------- Co-authored-by: Weijia Wang <9713184+wegank@users.noreply.github.com>
50 lines
991 B
Nix
50 lines
991 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, flit-core
|
|
, ghostscript
|
|
, pillow
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pydyf";
|
|
version = "0.9.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-1bJE6PwkEZznvV1R6i1nc8D/iKqBWX21VrxEDGuIBhA=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace "--isort --flake8 --cov --no-cov-on-fail" ""
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
flit-core
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
ghostscript
|
|
pillow
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"pydyf"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Low-level PDF generator written in Python and based on PDF specification 1.7";
|
|
homepage = "https://doc.courtbouillon.org/pydyf/stable/";
|
|
changelog = "https://github.com/CourtBouillon/pydyf/releases/tag/v${version}";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ rprecenth ];
|
|
};
|
|
}
|