anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / mutatormath / default.nix
blob1b259cd6ebd0de702213532901b9c70032693d44
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   defcon,
6   fontmath,
7   unicodedata2,
8   fs,
9 }:
11 buildPythonPackage rec {
12   pname = "mutatormath";
13   version = "3.0.1";
15   src = fetchPypi {
16     pname = "MutatorMath";
17     inherit version;
18     sha256 = "0r1qq45np49x14zz1zwkaayqrn7m8dn2jlipjldg2ihnmpzw29w1";
19     extension = "zip";
20   };
22   propagatedBuildInputs = [
23     fontmath
24     unicodedata2
25     defcon
26   ];
27   nativeCheckInputs = [
28     unicodedata2
29     fs
30   ];
32   meta = with lib; {
33     description = "Piecewise linear interpolation in multiple dimensions with multiple, arbitrarily placed, masters";
34     homepage = "https://github.com/LettError/MutatorMath";
35     license = licenses.bsd3;
36     maintainers = [ maintainers.sternenseemann ];
37   };