blob: 6410a919e542c8beb573a82b2b3fe59f450b09e2 (
plain)
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
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "py-sneakers";
version = "1.0.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-bIhkYTzRe4uM0kbNhbDTr6TiaOEBSiCSkPJKKCivDZY=";
};
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "py_sneakers" ];
meta = {
description = "Library to emulate the Sneakers movie effect";
mainProgram = "py-sneakers";
homepage = "https://github.com/aenima-x/py-sneakers";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|