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 format = "setuptools"; 15 16 src = fetchPypi { 17 pname = "MutatorMath"; 18 inherit version; 19 sha256 = "0r1qq45np49x14zz1zwkaayqrn7m8dn2jlipjldg2ihnmpzw29w1"; 20 extension = "zip"; 21 }; 22 23 propagatedBuildInputs = [ 24 fontmath 25 unicodedata2 26 defcon 27 ]; 28 nativeCheckInputs = [ 29 unicodedata2 30 fs 31 ]; 32 33 meta = with lib; { 34 description = "Piecewise linear interpolation in multiple dimensions with multiple, arbitrarily placed, masters"; 35 homepage = "https://github.com/LettError/MutatorMath"; 36 license = licenses.bsd3; 37 maintainers = [ maintainers.sternenseemann ]; 38 }; 39}