python3Packages.ndjson: init at 0.3.1

This commit is contained in:
freezeboy 2020-11-19 01:09:05 +01:00 committed by Jonathan Ringer
parent 8313dacb11
commit f78411700d
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ lib, buildPythonPackage, fetchPypi, wheel, watchdog, flake8
, pytest, pytestrunner, coverage, sphinx, twine }:
buildPythonPackage rec {
pname = "ndjson";
version = "0.3.1";
src = fetchPypi {
inherit pname version;
sha256 = "v5dGy2uxy1PRcs2n8VTAfHhtZl/yg0Hk5om3lrIp5dY=";
};
checkInputs = [ pytest pytestrunner flake8 twine sphinx coverage watchdog ];
meta = with lib; {
homepage = "https://github.com/rhgrant10/ndjson";
description = "JsonDecoder";
platforms = platforms.unix;
maintainers = with maintainers; [ freezeboy ];
};
}

View file

@ -4026,6 +4026,8 @@ in {
ndg-httpsclient = callPackage ../development/python-modules/ndg-httpsclient { };
ndjson = callPackage ../development/python-modules/ndjson { };
ndtypes = callPackage ../development/python-modules/ndtypes { };
neo = callPackage ../development/python-modules/neo { };