blob: 74af572a77d53eff702e4460e6f3b4e99a6e962c (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
hatch-vcs,
hatchling,
pytestCheckHook,
referencing,
}:
buildPythonPackage rec {
pname = "jsonschema-specifications";
version = "2025.4.1";
pyproject = true;
src = fetchPypi {
pname = "jsonschema_specifications";
inherit version;
hash = "sha256-YwFZyfTb6hYaaiIFwwEcxPGP84Gxif/0i7Obm/Jq5gg=";
};
nativeBuildInputs = [
hatch-vcs
hatchling
];
propagatedBuildInputs = [
referencing
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "jsonschema_specifications" ];
meta = {
description = "Support files exposing JSON from the JSON Schema specifications";
homepage = "https://github.com/python-jsonschema/jsonschema-specifications";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ SuperSandro2000 ];
};
}
|