Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / mutatormath / default.nix
blob1fdb937e33ea7dd3734c769cb9774cb49b1fdec3
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   nativeCheckInputs = [ 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   };