python313Packages.standardwebhooks: init at 1.0.0
Standard Webhooks https://pypi.org/project/standardwebhooks/
This commit is contained in:
parent
a3cd526f08
commit
279b5a2a81
46
pkgs/development/python-modules/standardwebhooks/default.nix
Normal file
46
pkgs/development/python-modules/standardwebhooks/default.nix
Normal file
@ -0,0 +1,46 @@
|
||||
{
|
||||
lib,
|
||||
attrs,
|
||||
buildPythonPackage,
|
||||
deprecated,
|
||||
fetchPypi,
|
||||
httpx,
|
||||
pytestCheckHook,
|
||||
python-dateutil,
|
||||
setuptools,
|
||||
types-deprecated,
|
||||
types-python-dateutil,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "standardwebhooks";
|
||||
version = "1.0.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-2UuZwNzqhBVuA62tlPjboy1UVMxo4S7CyCQFG1W7Z/8=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
attrs
|
||||
deprecated
|
||||
httpx
|
||||
python-dateutil
|
||||
types-deprecated
|
||||
types-python-dateutil
|
||||
];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [ "standardwebhooks" ];
|
||||
|
||||
meta = {
|
||||
description = "Standard Webhooks";
|
||||
homepage = "https://pypi.org/project/standardwebhooks/";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -15900,6 +15900,8 @@ self: super: with self; {
|
||||
|
||||
standard-telnetlib = if pythonAtLeast "3.13" then callPackage ../development/python-modules/standard-telnetlib { } else null;
|
||||
|
||||
standardwebhooks = callPackage ../development/python-modules/standardwebhooks { };
|
||||
|
||||
stone = callPackage ../development/python-modules/stone { };
|
||||
|
||||
stookalert = callPackage ../development/python-modules/stookalert { };
|
||||
|
Loading…
x
Reference in New Issue
Block a user