python3.pkgs.jsonpath: init at 0.82
This commit is contained in:
parent
059ee2a8b1
commit
e0ba4b2e12
21
pkgs/development/python-modules/jsonpath/default.nix
Normal file
21
pkgs/development/python-modules/jsonpath/default.nix
Normal file
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
@ -801,6 +801,8 @@ in {
|
||||
|
||||
jira = callPackage ../development/python-modules/jira { };
|
||||
|
||||
jsonpath = callPackage ../development/python-modules/jsonpath { };
|
||||
|
||||
junit-xml = callPackage ../development/python-modules/junit-xml { };
|
||||
|
||||
junitparser = callPackage ../development/python-modules/junitparser { };
|
||||
|
Loading…
Reference in New Issue
Block a user