587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
52 lines
900 B
Nix
52 lines
900 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, hatchling
|
|
, pythonRelaxDepsHook
|
|
, dparse
|
|
, packaging
|
|
, pydantic
|
|
, ruamel-yaml
|
|
, typing-extensions
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "safety-schemas";
|
|
version = "0.0.2";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "safety_schemas";
|
|
inherit version;
|
|
hash = "sha256-fRsEDsBkgPBc/2tF6nqT4JyJQt+GT7DQHd62fDI8+ow=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
hatchling
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
pythonRelaxDeps = [
|
|
"dparse"
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
dparse
|
|
packaging
|
|
pydantic
|
|
ruamel-yaml
|
|
typing-extensions
|
|
];
|
|
|
|
pythonImportsCheck = [ "safety_schemas" ];
|
|
|
|
# upstream has no tests
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Schemas for Safety CLI";
|
|
homepage = "https://pypi.org/project/safety-schemas/";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
};
|
|
}
|