depot/third_party/nixpkgs/pkgs/development/python-modules/beziers/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

41 lines
883 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, dotmap
, matplotlib
, pyclipper
, unittestCheckHook
}:
buildPythonPackage rec {
pname = "beziers";
version = "0.5.0";
format = "setuptools";
# PyPI doesn't have a proper source tarball, fetch from Github instead
src = fetchFromGitHub {
owner = "simoncozens";
repo = "beziers.py";
rev = "v${version}";
hash = "sha256-4014u7s47Tfdpa2Q9hKAoHg7Ebcs1/DVW5TpEmoh2bc=";
};
propagatedBuildInputs = [
pyclipper
];
doCheck = true;
nativeCheckInputs = [
dotmap
matplotlib
unittestCheckHook
];
unittestFlagsArray = [ "-s" "test" "-v" ];
meta = with lib; {
description = "Python library for manipulating Bezier curves and paths in fonts";
homepage = "https://github.com/simoncozens/beziers.py";
license = licenses.mit;
maintainers = with maintainers; [ danc86 ];
};
}