aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/mutatormath/default.nix
blob: 9336dbf354af0e8439cb2d9ce74dfca5c8fb2c40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 ];
  };
}