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