1{ lib, buildPythonPackage, fetchPypi, watchdog, flake8 2, pytest, pytest-runner, coverage, sphinx, twine }: 3 4buildPythonPackage rec { 5 pname = "ndjson"; 6 version = "0.3.1"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "v5dGy2uxy1PRcs2n8VTAfHhtZl/yg0Hk5om3lrIp5dY="; 11 }; 12 13 checkInputs = [ pytest pytest-runner flake8 twine sphinx coverage watchdog ]; 14 15 meta = with lib; { 16 homepage = "https://github.com/rhgrant10/ndjson"; 17 description = "JsonDecoder"; 18 platforms = platforms.unix; 19 license = licenses.gpl3Only; 20 maintainers = with maintainers; [ freezeboy ]; 21 }; 22}