fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
38 lines
742 B
Nix
38 lines
742 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
defcon,
|
|
fontmath,
|
|
unicodedata2,
|
|
fs,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mutatormath";
|
|
version = "3.0.1";
|
|
|
|
src = fetchPypi {
|
|
pname = "MutatorMath";
|
|
inherit version;
|
|
sha256 = "0r1qq45np49x14zz1zwkaayqrn7m8dn2jlipjldg2ihnmpzw29w1";
|
|
extension = "zip";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
fontmath
|
|
unicodedata2
|
|
defcon
|
|
];
|
|
nativeCheckInputs = [
|
|
unicodedata2
|
|
fs
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|