pythonPackages.mutatormath: init at 3.0.1

This commit is contained in:
sternenseemann 2020-08-25 20:10:42 +02:00 committed by Jon
parent 03ac35ddf7
commit 34f05cf02f
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib, buildPythonPackage, fetchPypi
, defcon, fontmath
, unicodedata2, fs
}:
buildPythonPackage rec {
pname = "MutatorMath";
version = "3.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "0r1qq45np49x14zz1zwkaayqrn7m8dn2jlipjldg2ihnmpzw29w1";
extension = "zip";
};
propagatedBuildInputs = [ fontmath unicodedata2 defcon ];
checkInputs = [ 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 ];
};
}

View File

@ -4952,6 +4952,8 @@ in {
else
callPackage ../development/python-modules/mutagen { };
mutatormath = callPackage ../development/python-modules/mutatormath { };
muttils = callPackage ../development/python-modules/muttils { };
mygpoclient = callPackage ../development/python-modules/mygpoclient { };