python3.pkgs.jsonpath: init at 0.82

This commit is contained in:
Jörg Thalheim 2020-02-26 16:30:05 +00:00
parent 059ee2a8b1
commit e0ba4b2e12
No known key found for this signature in database
GPG Key ID: 003F2096411B5F92
2 changed files with 23 additions and 0 deletions

@ -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 { };