mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-19 22:41:09 +08:00
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
42 lines
955 B
Nix
42 lines
955 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, poetry-core
|
|
, pytestCheckHook
|
|
, isodate
|
|
, jsonschema
|
|
, pytest-cov
|
|
, rfc3339-validator
|
|
, six
|
|
, strict-rfc3339
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "openapi-schema-validator";
|
|
version = "0.3.4";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "p1c2u";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "sha256-0nKAeqZCfzYFsV18BDsSws/54FmRoy7lQSHguI6m3Sc=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [ isodate jsonschema six strict-rfc3339 rfc3339-validator ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook pytest-cov ];
|
|
pythonImportsCheck = [ "openapi_schema_validator" ];
|
|
|
|
meta = with lib; {
|
|
description = "Validates OpenAPI schema against the OpenAPI Schema Specification v3.0";
|
|
homepage = "https://github.com/p1c2u/openapi-schema-validator";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ AluisioASG ];
|
|
};
|
|
}
|