mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
python3Packages.ndjson: init at 0.3.1
This commit is contained in:
parent
8313dacb11
commit
f78411700d
2 changed files with 23 additions and 0 deletions
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…
Add table
Add a link
Reference in a new issue