blob: 074d8a9979938300bda0f7b7b4e84ff9f9791a23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
pathable,
pyyaml,
referencing,
pytest-cov-stub,
pytestCheckHook,
responses,
}:
buildPythonPackage rec {
pname = "jsonschema-path";
version = "0.3.4";
pyproject = true;
src = fetchFromGitHub {
owner = "p1c2u";
repo = "jsonschema-path";
tag = version;
hash = "sha256-rCepDnVAOEsokKjWCuqDYbGIq6/wn4rsQRx5dXTUsYo=";
};
build-system = [ poetry-core ];
pythonRelaxDeps = [ "referencing" ];
propagatedBuildInputs = [
pathable
pyyaml
referencing
];
pythonImportsCheck = [ "jsonschema_path" ];
nativeCheckInputs = [
pytest-cov-stub
pytestCheckHook
responses
];
meta = {
changelog = "https://github.com/p1c2u/jsonschema-path/releases/tag/${version}";
description = "JSONSchema Spec with object-oriented paths";
homepage = "https://github.com/p1c2u/jsonschema-path";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|