nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "py-sneakers";
9 version = "1.0.1";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-bIhkYTzRe4uM0kbNhbDTr6TiaOEBSiCSkPJKKCivDZY=";
15 };
16
17 # Module has no tests
18 doCheck = false;
19
20 pythonImportsCheck = [ "py_sneakers" ];
21
22 meta = {
23 description = "Library to emulate the Sneakers movie effect";
24 mainProgram = "py-sneakers";
25 homepage = "https://github.com/aenima-x/py-sneakers";
26 license = lib.licenses.mit;
27 maintainers = with lib.maintainers; [ fab ];
28 };
29}