1 { lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook, six, }:
3 buildPythonPackage rec {
7 src = fetchFromGitHub {
11 sha256 = "0c85fdqkj5k4b0v0ngx2d9qbmzdsvglh4j9k9h7508bvn7l8fa4b";
14 propagatedBuildInputs = [ six ];
16 checkInputs = [ pytestCheckHook ];
17 pytestFlagsArray = [ "tests --doctest-modules jsonstreams" ];
20 description = "A JSON streaming writer";
21 homepage = "https://github.com/dcbaker/jsonstreams";
22 license = licenses.mit;
23 maintainers = with maintainers; [ chkno ];