nixpkgs/pkgs/development/python-modules/pytweening/default.nix
lucasew 45dd3c1f7a maintainers/lucasew: disown some packages
Signed-off-by: lucasew <lucas59356@gmail.com>
2026-06-16 10:16:48 -03:00

27 lines
578 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "pytweening";
version = "1.2.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-JDMYt3NmmAZsXzYuxcK2Q07PQpfDyOfKqKv+avTKxxs=";
};
pythonImportsCheck = [ "pytweening" ];
checkPhase = ''
python -m unittest tests.basicTests
'';
meta = {
description = "Set of tweening / easing functions implemented in Python";
homepage = "https://github.com/asweigart/pytweening";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}