mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
Caido Proxy API schemas (GraphQL and OpenAPI) https://pypi.org/project/caido-schema-proxy
37 lines
791 B
Nix
37 lines
791 B
Nix
{
|
|
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 ];
|
|
};
|
|
})
|