ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / py-sneakers / default.nix
blob62174c3dfc268866cf6857af8e648db184fa78d1
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 }:
7 buildPythonPackage rec {
8   pname = "py-sneakers";
9   version = "1.0.1";
10   format = "setuptools";
12   disabled = pythonOlder "3.7";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-bIhkYTzRe4uM0kbNhbDTr6TiaOEBSiCSkPJKKCivDZY=";
17   };
19   # Module has no tests
20   doCheck = false;
22   pythonImportsCheck = [
23     "py_sneakers"
24   ];
26   meta = with lib; {
27     description = "Library to emulate the Sneakers movie effect";
28     homepage = "https://github.com/aenima-x/py-sneakers";
29     license = licenses.mit;
30     maintainers = with maintainers; [ fab ];
31   };