mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-20 07:31:19 +00:00
python3Packages.caido-schema-proxy: init at 0.57.0
Caido Proxy API schemas (GraphQL and OpenAPI) https://pypi.org/project/caido-schema-proxy
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
hatchling,
|
||||
nix-update-script,
|
||||
}:
|
||||
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "caido-schema-proxy";
|
||||
version = "0.57.0";
|
||||
pyproject = true;
|
||||
|
||||
__structuredAttrs = true;
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "caido_schema_proxy";
|
||||
inherit (finalAttrs) version;
|
||||
hash = "sha256-5hholzMKrNuJZUZIvg+phProD8OZ/YB0ZSGReGa2IqU=";
|
||||
};
|
||||
|
||||
build-system = [ hatchling ];
|
||||
|
||||
pythonImportsCheck = [ "caido_schema_proxy" ];
|
||||
|
||||
# Module has no tests
|
||||
doCheck = false;
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
description = "Caido Proxy API schemas (GraphQL and OpenAPI)";
|
||||
homepage = "https://pypi.org/project/caido-schema-proxy";
|
||||
license = lib.licenses.cc-by-40;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
};
|
||||
})
|
||||
@@ -2470,6 +2470,8 @@ self: super: with self; {
|
||||
}
|
||||
);
|
||||
|
||||
caido-schema-proxy = callPackage ../development/python-modules/caido-schema-proxy { };
|
||||
|
||||
caido-server-auth = callPackage ../development/python-modules/caido-server-auth { };
|
||||
|
||||
caio = callPackage ../development/python-modules/caio { };
|
||||
|
||||
Reference in New Issue
Block a user