python3Packages.ndjson: init at 0.3.1
This commit is contained in:
parent
8313dacb11
commit
f78411700d
21
pkgs/development/python-modules/ndjson/default.nix
Normal file
21
pkgs/development/python-modules/ndjson/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user