2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
defcon,
|
|
|
|
fontmath,
|
|
|
|
unicodedata2,
|
|
|
|
fs,
|
2020-09-25 04:45:31 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2024-04-21 15:54:59 +00:00
|
|
|
pname = "mutatormath";
|
2020-09-25 04:45:31 +00:00
|
|
|
version = "3.0.1";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
2024-04-21 15:54:59 +00:00
|
|
|
pname = "MutatorMath";
|
|
|
|
inherit version;
|
2020-09-25 04:45:31 +00:00
|
|
|
sha256 = "0r1qq45np49x14zz1zwkaayqrn7m8dn2jlipjldg2ihnmpzw29w1";
|
|
|
|
extension = "zip";
|
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
fontmath
|
|
|
|
unicodedata2
|
|
|
|
defcon
|
|
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
|
|
unicodedata2
|
|
|
|
fs
|
|
|
|
];
|
2020-09-25 04:45:31 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Piecewise linear interpolation in multiple dimensions with multiple, arbitrarily placed, masters";
|
|
|
|
homepage = "https://github.com/LettError/MutatorMath";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.sternenseemann ];
|
|
|
|
};
|
|
|
|
}
|