summary refs log tree commit diff
path: root/pkgs/development/python-modules/jsonpath/default.nix
blob: 383df6e2652e91825c7c387f7a9622139935bffb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "jsonpath";
  version = "0.82";

  src = fetchPypi {
    inherit pname version;
    sha256 = "46d3fd2016cd5b842283d547877a02c418a0fe9aa7a6b0ae344115a2c990fef4";
  };

  meta = with lib; {
    description = "An XPath for JSON";
    homepage = "https://github.com/json-path/JsonPath";
    license = licenses.mit;
    maintainers = [ maintainers.mic92 ];
  };
}