nixpkgs/pkgs/development/python-modules/jsonpath-python/default.nix
Martin Weinelt 9041df5160 python3Packages.jsonpath-python: 1.0.6 -> 1.1.4
This commit was automatically generated using update-python-libraries.

Co-authored-by: Michael Daniels <mdaniels5757@gmail.com>
2026-02-01 17:19:22 +01:00

32 lines
784 B
Nix

{
buildPythonPackage,
fetchPypi,
hatchling,
lib,
pytestCheckHook,
pytest-benchmark,
}:
buildPythonPackage rec {
pname = "jsonpath-python";
version = "1.1.4";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "jsonpath_python";
hash = "sha256-uz4ThU5IB8B4oVA64th8IRuL/02bQLZFXtWDs7UKf90=";
};
build-system = [ hatchling ];
nativeCheckInputs = [
pytest-benchmark
pytestCheckHook
]
++ pytest-benchmark.optional-dependencies.histogram;
pythonImportsCheck = [ "jsonpath" ];
meta = {
homepage = "https://github.com/sean2077/jsonpath-python";
description = "More powerful JSONPath implementations in modern python";
maintainers = with lib.maintainers; [ dadada ];
license = with lib.licenses; [ mit ];
};
}