12 buildPythonPackage rec {
15 format = "setuptools";
17 # PyPI doesn't have a proper source tarball, fetch from Github instead
18 src = fetchFromGitHub {
19 owner = "simoncozens";
22 hash = "sha256-NjmWsRz/NPPwXPbiSaOeKJMrYmSyNTt5ikONyAljgvM=";
25 propagatedBuildInputs = [ pyclipper ];
32 unittestFlagsArray = [
38 passthru.updateScript = gitUpdater { rev-prefix = "v"; };
41 description = "Python library for manipulating Bezier curves and paths in fonts";
42 homepage = "https://github.com/simoncozens/beziers.py";
43 license = licenses.mit;
44 maintainers = with maintainers; [ danc86 ];