depot/third_party/nixpkgs/pkgs/development/python-modules/pytweening/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

26 lines
605 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 = with lib; {
description = "Set of tweening / easing functions implemented in Python";
homepage = "https://github.com/asweigart/pytweening";
license = licenses.bsd3;
maintainers = with maintainers; [ lucasew ];
};
}