about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/py-sneakers/default.nix
blob: b69516d47a777e7993fc8e46fe8a3aff943166f5 (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
26
27
28
29
30
31
32
33
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:

buildPythonPackage rec {
  pname = "py-sneakers";
  version = "1.0.1";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-bIhkYTzRe4uM0kbNhbDTr6TiaOEBSiCSkPJKKCivDZY=";
  };

  # Module has no tests
  doCheck = false;

  pythonImportsCheck = [
    "py_sneakers"
  ];

  meta = with lib; {
    description = "Library to emulate the Sneakers movie effect";
    mainProgram = "py-sneakers";
    homepage = "https://github.com/aenima-x/py-sneakers";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}