aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/jsonpath
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2020-02-26 16:30:05 +0000
committerJörg Thalheim <joerg@thalheim.io>2020-02-26 16:37:58 +0000
commite0ba4b2e12bf71cbc03f1c096293adeacc7ffdb8 (patch)
tree4fc15803610818a77e3bc1788902823cdd0554c7 /pkgs/development/python-modules/jsonpath
parent059ee2a8b1c526acc216c2f3cfc7f3de345041bc (diff)
python3.pkgs.jsonpath: init at 0.82
Diffstat (limited to 'pkgs/development/python-modules/jsonpath')
-rw-r--r--pkgs/development/python-modules/jsonpath/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/jsonpath/default.nix b/pkgs/development/python-modules/jsonpath/default.nix
new file mode 100644
index 000000000000..383df6e2652e
--- /dev/null
+++ b/pkgs/development/python-modules/jsonpath/default.nix
@@ -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 ];
+ };
+}