about summary refs log tree commit diff
path: root/pkgs/development/python-modules/booleanoperations
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2020-08-25 17:26:52 +0200
committerJon <jonringer@users.noreply.github.com>2020-08-30 10:17:23 -0700
commite591c63a4f638efb2b823b06eef358c7d8dc4b03 (patch)
tree28a8a49b924abb0a0caa8238a95e2f2a1d302c71 /pkgs/development/python-modules/booleanoperations
parentfb67ae709f6ed46058a55ec0c756ec84cbdf288f (diff)
pythonPackages.booleanoperations: init at 0.9.0
Diffstat (limited to 'pkgs/development/python-modules/booleanoperations')
-rw-r--r--pkgs/development/python-modules/booleanoperations/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/booleanoperations/default.nix b/pkgs/development/python-modules/booleanoperations/default.nix
new file mode 100644
index 0000000000000..c747df90f5a55
--- /dev/null
+++ b/pkgs/development/python-modules/booleanoperations/default.nix
@@ -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 ];
+  };
+}