mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-06 13:23:41 +00:00
Diff: https://github.com/p1c2u/jsonschema-path/compare/0.4.5...0.4.6 Changelog: https://github.com/p1c2u/jsonschema-path/releases/tag/0.4.6
50 lines
966 B
Nix
50 lines
966 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
pathable,
|
|
pyyaml,
|
|
referencing,
|
|
pytest-cov-stub,
|
|
pytestCheckHook,
|
|
responses,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jsonschema-path";
|
|
version = "0.4.6";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "p1c2u";
|
|
repo = "jsonschema-path";
|
|
tag = version;
|
|
hash = "sha256-abAhWtBnZUeg1VGphfnvxPzSnPM6VjM/XKLPJVIrIXg=";
|
|
};
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [
|
|
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 ];
|
|
};
|
|
}
|