0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

python3Packages.json-stream: 1.5.1 -> 2.1.1

This commit is contained in:
Winter 2023-01-10 21:09:33 -05:00
parent 06166c8c70
commit 195600bc7e

View file

@ -4,19 +4,20 @@
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, requests , requests
, json-stream-rs-tokenizer
, setuptools , setuptools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "json-stream"; pname = "json-stream";
version = "1.5.1"; version = "2.1.1";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-htajifmbXtivUwsORzBzJA68nJCACcL75kiBysVYCxY="; hash = "sha256-NppHSfgelHXNOHxEq5AImVoxeFCcscitkLR9v/bIM5Y=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -25,6 +26,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
requests requests
json-stream-rs-tokenizer
]; ];
checkInputs = [ checkInputs = [