forked from mirrors/nixpkgs
pytweening: init at 1.0.4
Signed-off-by: lucasew <lucas59356@gmail.com>
This commit is contained in:
parent
e52be73c2d
commit
0af9db3847
25
pkgs/development/python-modules/pytweening/default.nix
Normal file
25
pkgs/development/python-modules/pytweening/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
buildPythonPackage rec {
|
||||
pname = "pytweening";
|
||||
version = "1.0.4";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-hTMoLPcLMd6KBJnhz0IJMLABPHhxGIcrLsiZOCeS4uY=";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue