2021-02-19 19:06:45 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, watchdog, flake8
|
2021-07-24 12:14:16 +00:00
|
|
|
, pytest, pytest-runner, coverage, sphinx, twine }:
|
2020-11-21 19:51:51 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "ndjson";
|
|
|
|
version = "0.3.1";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "v5dGy2uxy1PRcs2n8VTAfHhtZl/yg0Hk5om3lrIp5dY=";
|
|
|
|
};
|
|
|
|
|
2021-07-24 12:14:16 +00:00
|
|
|
checkInputs = [ pytest pytest-runner flake8 twine sphinx coverage watchdog ];
|
2020-11-21 19:51:51 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/rhgrant10/ndjson";
|
|
|
|
description = "JsonDecoder";
|
|
|
|
platforms = platforms.unix;
|
2021-03-20 04:20:00 +00:00
|
|
|
license = licenses.gpl3Only;
|
2020-11-21 19:51:51 +00:00
|
|
|
maintainers = with maintainers; [ freezeboy ];
|
|
|
|
};
|
|
|
|
}
|