Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / mutatormath / default.nix
blob9336dbf354af0e8439cb2d9ce74dfca5c8fb2c40
1 { lib, buildPythonPackage, fetchPypi
2 , defcon, fontmath
3 , unicodedata2, fs
4 }:
6 buildPythonPackage rec {
7   pname = "MutatorMath";
8   version = "3.0.1";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "0r1qq45np49x14zz1zwkaayqrn7m8dn2jlipjldg2ihnmpzw29w1";
13     extension = "zip";
14   };
16   propagatedBuildInputs = [ fontmath unicodedata2 defcon ];
17   checkInputs = [ unicodedata2 fs ];
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   };