1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 defcon,
6 fontmath,
7 unicodedata2,
8 fs,
9}:
10
11buildPythonPackage rec {
12 pname = "mutatormath";
13 version = "3.0.1";
14
15 src = fetchPypi {
16 pname = "MutatorMath";
17 inherit version;
18 sha256 = "0r1qq45np49x14zz1zwkaayqrn7m8dn2jlipjldg2ihnmpzw29w1";
19 extension = "zip";
20 };
21
22 propagatedBuildInputs = [
23 fontmath
24 unicodedata2
25 defcon
26 ];
27 nativeCheckInputs = [
28 unicodedata2
29 fs
30 ];
31
32 meta = with lib; {
33 description = "Piecewise linear interpolation in multiple dimensions with multiple, arbitrarily placed, masters";
34 homepage = "https://github.com/LettError/MutatorMath";
35 license = licenses.bsd3;
36 maintainers = [ maintainers.sternenseemann ];
37 };
38}