Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / jmespath / default.nix
blob6a5ef26c4fa57948a75d1f124837e2331e10a51b
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , hypothesis
5 , pytestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "jmespath";
10   version = "1.0.1";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-kCYbIG1t79WP3V6F9Hi/YzopAXmJBr4q04kVDFxg7b4=";
16   };
18   nativeCheckInputs = [
19     hypothesis
20     pytestCheckHook
21   ];
23   meta = with lib; {
24     homepage = "https://github.com/jmespath/jmespath.py";
25     description = "JMESPath allows you to declaratively specify how to extract elements from a JSON document";
26     mainProgram = "jp.py";
27     license = licenses.mit;
28     maintainers = with maintainers; [ ];
29   };