Merge pull request #298189 from jopejoe1/jsonslicer
python311Packages.jsonslicer: init at 0.1.7
This commit is contained in:
commit
c2c5cd0a4b
32
pkgs/development/python-modules/jsonslicer/default.nix
Normal file
32
pkgs/development/python-modules/jsonslicer/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
stdenv,
|
||||||
|
lib,
|
||||||
|
buildPythonPackage,
|
||||||
|
fetchFromGitHub,
|
||||||
|
pkg-config,
|
||||||
|
yajl,
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "jsonslicer";
|
||||||
|
version = "0.1.7";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "AMDmi3";
|
||||||
|
repo = "jsonslicer";
|
||||||
|
rev = version;
|
||||||
|
hash = "sha256-uKIe/nJLCTe8WFIMB7+g3c0Yv3addgZEKYaBI6EpBSY=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
|
||||||
|
buildInputs = [ yajl ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Stream JSON parser for Python ";
|
||||||
|
homepage = "https://github.com/AMDmi3/jsonslicer";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ jopejoe1 ];
|
||||||
|
};
|
||||||
|
}
|
@ -6147,6 +6147,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
jsonschema-specifications = callPackage ../development/python-modules/jsonschema-specifications { };
|
jsonschema-specifications = callPackage ../development/python-modules/jsonschema-specifications { };
|
||||||
|
|
||||||
|
jsonslicer = callPackage ../development/python-modules/jsonslicer { };
|
||||||
|
|
||||||
jsonstreams = callPackage ../development/python-modules/jsonstreams { };
|
jsonstreams = callPackage ../development/python-modules/jsonstreams { };
|
||||||
|
|
||||||
json-tricks = callPackage ../development/python-modules/json-tricks { };
|
json-tricks = callPackage ../development/python-modules/json-tricks { };
|
||||||
|
Loading…
Reference in New Issue
Block a user