blob: 3542fb60b2818a907114b630cd1c20e192e47be2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
{
lib,
buildPythonPackage,
fetchPypi,
fonttools,
pytestCheckHook,
rustPlatform,
}:
buildPythonPackage rec {
pname = "kurbopy";
version = "0.11.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-0TIVx0YH5L8l6at1fcWkj2UZYK0aF1fahTu9/+7MWMI=";
};
propagatedBuildInputs = [ fonttools ];
nativeBuildInputs = [
rustPlatform.cargoSetupHook
rustPlatform.maturinBuildHook
];
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
hash = "sha256-W0BebCXC1wqwtQP+zHjISxSJjXHD9U6p9eNS12Nfb2Y=";
};
doCheck = true;
nativeCheckInputs = [ pytestCheckHook ];
preCheck = ''
# pytestCheckHook puts . at the front of Python's sys.path, due to:
# https://github.com/NixOS/nixpkgs/issues/255262
# So we need to prevent pytest from trying to import kurbopy from
# ./kurbopy, which contains the sources but not the newly built module.
# We want it to import kurbopy from the nix store via $PYTHONPATH instead.
rm -r kurbopy
'';
meta = with lib; {
description = "Python wrapper around the Rust kurbo library for 2D curve manipulation";
homepage = "https://github.com/simoncozens/kurbopy";
license = licenses.asl20;
maintainers = with maintainers; [ danc86 ];
};
}
|