bb5b50588c
GitOrigin-RevId: 9816b99e71c3504b0b4c1f8b2e004148460029d4
21 lines
566 B
Nix
21 lines
566 B
Nix
{ lib, buildPythonPackage, fetchPypi, 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 ];
|
|
};
|
|
}
|