about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pytweening/default.nix
blob: d0ba9803063ba534a53425ac52f1ee3bfe094741 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 ];
  };
}