parabolic: 2024.5.0 -> 2025.1.4 (#378350)
[NixPkgs.git] / pkgs / development / python-modules / py-sneakers / default.nix
blobbcb9c07fb323023e350ad85aceb4b9d92a7431c5
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6 }:
8 buildPythonPackage rec {
9   pname = "py-sneakers";
10   version = "1.0.1";
11   format = "setuptools";
13   disabled = pythonOlder "3.7";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-bIhkYTzRe4uM0kbNhbDTr6TiaOEBSiCSkPJKKCivDZY=";
18   };
20   # Module has no tests
21   doCheck = false;
23   pythonImportsCheck = [ "py_sneakers" ];
25   meta = with lib; {
26     description = "Library to emulate the Sneakers movie effect";
27     mainProgram = "py-sneakers";
28     homepage = "https://github.com/aenima-x/py-sneakers";
29     license = licenses.mit;
30     maintainers = with maintainers; [ fab ];
31   };