blob: 3aa52ea26af141e17be67f76d178eb2c0b939909 (
plain)
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
|
{
lib,
buildPythonPackage,
fetchPypi,
defcon,
fontmath,
unicodedata2,
fs,
}:
buildPythonPackage rec {
pname = "mutatormath";
version = "3.0.1";
format = "setuptools";
src = fetchPypi {
pname = "MutatorMath";
inherit version;
sha256 = "0r1qq45np49x14zz1zwkaayqrn7m8dn2jlipjldg2ihnmpzw29w1";
extension = "zip";
};
propagatedBuildInputs = [
fontmath
unicodedata2
defcon
];
nativeCheckInputs = [
unicodedata2
fs
];
meta = {
description = "Piecewise linear interpolation in multiple dimensions with multiple, arbitrarily placed, masters";
homepage = "https://github.com/LettError/MutatorMath";
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.sternenseemann ];
};
}
|