nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python310Packages.py-sneakers: init at 1.0.1

+34
+32
pkgs/development/python-modules/py-sneakers/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pythonOlder 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "py-sneakers"; 9 + version = "1.0.1"; 10 + format = "setuptools"; 11 + 12 + disabled = pythonOlder "3.7"; 13 + 14 + src = fetchPypi { 15 + inherit pname version; 16 + hash = "sha256-bIhkYTzRe4uM0kbNhbDTr6TiaOEBSiCSkPJKKCivDZY="; 17 + }; 18 + 19 + # Module has no tests 20 + doCheck = false; 21 + 22 + pythonImportsCheck = [ 23 + "py_sneakers" 24 + ]; 25 + 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 + }; 32 + }
+2
pkgs/top-level/python-packages.nix
··· 6976 6976 6977 6977 py-synologydsm-api = callPackage ../development/python-modules/py-synologydsm-api { }; 6978 6978 6979 + py-sneakers = callPackage ../development/python-modules/py-sneakers { }; 6980 + 6979 6981 py-tes = callPackage ../development/python-modules/py-tes { }; 6980 6982 6981 6983 py-ubjson = callPackage ../development/python-modules/py-ubjson { };