mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-09 02:23:20 -05:00
Diff: https://github.com/typemytype/booleanOperations/compare/0.9.0...0.10.0 Changelog: https://github.com/typemytype/booleanOperations/releases/tag/0.10.0
51 lines
1,004 B
Nix
51 lines
1,004 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
fonttools,
|
|
pyclipper,
|
|
defcon,
|
|
fontpens,
|
|
setuptools,
|
|
setuptools-scm,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "booleanoperations";
|
|
version = "0.10.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "typemytype";
|
|
repo = "booleanOperations";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-IJyb6g2xwWj82Vm33Mtkqen1X/w0tSaP+Q/DtFc8Dd4=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
dependencies = [
|
|
fonttools
|
|
pyclipper
|
|
];
|
|
|
|
pythonImportsCheck = [ "booleanOperations" ];
|
|
|
|
nativeCheckInputs = [
|
|
defcon
|
|
fontpens
|
|
pytestCheckHook
|
|
];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/typemytype/booleanOperations/releases/tag/${finalAttrs.src.tag}";
|
|
description = "Boolean operations on paths";
|
|
homepage = "https://github.com/typemytype/booleanOperations";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.sternenseemann ];
|
|
};
|
|
})
|