lol

python313Packages.standardwebhooks: init at 1.0.0

Standard Webhooks

https://pypi.org/project/standardwebhooks/

+48
+46
pkgs/development/python-modules/standardwebhooks/default.nix
··· 1 + { 2 + lib, 3 + attrs, 4 + buildPythonPackage, 5 + deprecated, 6 + fetchPypi, 7 + httpx, 8 + pytestCheckHook, 9 + python-dateutil, 10 + setuptools, 11 + types-deprecated, 12 + types-python-dateutil, 13 + }: 14 + 15 + buildPythonPackage rec { 16 + pname = "standardwebhooks"; 17 + version = "1.0.0"; 18 + pyproject = true; 19 + 20 + src = fetchPypi { 21 + inherit pname version; 22 + hash = "sha256-2UuZwNzqhBVuA62tlPjboy1UVMxo4S7CyCQFG1W7Z/8="; 23 + }; 24 + 25 + build-system = [ setuptools ]; 26 + 27 + dependencies = [ 28 + attrs 29 + deprecated 30 + httpx 31 + python-dateutil 32 + types-deprecated 33 + types-python-dateutil 34 + ]; 35 + 36 + nativeCheckInputs = [ pytestCheckHook ]; 37 + 38 + pythonImportsCheck = [ "standardwebhooks" ]; 39 + 40 + meta = { 41 + description = "Standard Webhooks"; 42 + homepage = "https://pypi.org/project/standardwebhooks/"; 43 + license = lib.licenses.mit; 44 + maintainers = with lib.maintainers; [ fab ]; 45 + }; 46 + }
+2
pkgs/top-level/python-packages.nix
··· 15900 15900 15901 15901 standard-telnetlib = if pythonAtLeast "3.13" then callPackage ../development/python-modules/standard-telnetlib { } else null; 15902 15902 15903 + standardwebhooks = callPackage ../development/python-modules/standardwebhooks { }; 15904 + 15903 15905 stone = callPackage ../development/python-modules/stone { }; 15904 15906 15905 15907 stookalert = callPackage ../development/python-modules/stookalert { };