mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 15:44:20 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
26 lines
684 B
Nix
26 lines
684 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 ];
|
|
nativeCheckInputs = [ 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 ];
|
|
};
|
|
}
|