From 2cc7723d764503b031b8978db7c9f637d19fac11 Mon Sep 17 00:00:00 2001 From: ng0 Date: Wed, 20 Sep 2017 18:07:47 +0000 Subject: [PATCH 5/7] gnu: Add python2-booleanoperations. * gnu/packages/python.scm (python2-booleanoperations): New variable. --- gnu/packages/python.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 36be2e34a..90cc5283f 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -7472,6 +7472,35 @@ files. UFO is a file format that stores fonts source files.") Angus Johnson's Clipper library (ver. 6.2.1)") (license license:expat))) +(define-public python2-booleanoperations + (package + (name "python2-booleanoperations") + (version "0.7.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "booleanOperations" version ".zip")) + (sha256 + (base32 + "1hw42fazdpvsn77glx96hwsj9l17mvx37sc5707s08y5w6fx16mn")))) + (build-system python-build-system) + (arguments + `(#:python ,python-2)) + (native-inputs + `(("unzip" ,unzip) + ("python2-pytest-3.0" ,python2-pytest-3.0) + ("python2-pytest-runner" ,python2-pytest-runner))) + (propagated-inputs + `(("python-fonttools" ,python2-fonttools) + ("python-pyclipper" ,python2-pyclipper) + ("python-ufolib" ,python2-ufolib))) + (home-page "https://github.com/typemytype/booleanOperations") + (synopsis "Boolean operations on paths") + (description + "BooleanOperations provides a python library that enables +boolean operations on paths.") + (license license:expat))) + (define-public python-ly (package (name "python-ly") -- 2.14.2