depot/third_party/nixpkgs/pkgs/development/python-modules/mutatormath/default.nix
Default email 58f8944c92 Project import generated by Copybara.
GitOrigin-RevId: 5aba0fe9766a7201a336249fd6cb76e0d7ba2faf
2020-09-24 23:45:31 -05:00

25 lines
678 B
Nix

{ 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 ];
};
}