pythonPackages.booleanoperations: init at 0.9.0
This commit is contained in:
parent
fb67ae709f
commit
e591c63a4f
@ -0,0 +1,34 @@
|
||||
{ lib, buildPythonPackage, fetchPypi
|
||||
, fonttools, fs, pyclipper, defcon, fontpens
|
||||
, setuptools_scm, pytest
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "booleanOperations";
|
||||
version = "0.9.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1f41lb19m8azchl1aqz6j5ycbspb8jsf1cnn42hlydxd68f85ylc";
|
||||
extension = "zip";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ setuptools_scm ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
fonttools
|
||||
fs
|
||||
pyclipper
|
||||
defcon
|
||||
fontpens
|
||||
];
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Boolean operations on paths";
|
||||
homepage = "https://github.com/typemytype/booleanOperations";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.sternenseemann ];
|
||||
};
|
||||
}
|
@ -2091,6 +2091,8 @@ in {
|
||||
|
||||
boltztrap2 = callPackage ../development/python-modules/boltztrap2 { };
|
||||
|
||||
booleanoperations = callPackage ../development/python-modules/booleanoperations { };
|
||||
|
||||
boolean-py = callPackage ../development/python-modules/boolean-py { };
|
||||
|
||||
bumps = callPackage ../development/python-modules/bumps {};
|
||||
|
Loading…
Reference in New Issue
Block a user