Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / mutatormath / default.nix
blob27e92103c5a96a837f3f291d4bf6421c475850c2
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     pname = "MutatorMath";
12     inherit version;
13     sha256 = "0r1qq45np49x14zz1zwkaayqrn7m8dn2jlipjldg2ihnmpzw29w1";
14     extension = "zip";
15   };
17   propagatedBuildInputs = [ fontmath unicodedata2 defcon ];
18   nativeCheckInputs = [ unicodedata2 fs ];
20   meta = with lib; {
21     description = "Piecewise linear interpolation in multiple dimensions with multiple, arbitrarily placed, masters";
22     homepage = "https://github.com/LettError/MutatorMath";
23     license = licenses.bsd3;
24     maintainers = [ maintainers.sternenseemann ];
25   };