nixpkgs/pkgs/development/python-modules/ndjson/default.nix

23 lines
599 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, watchdog, flake8
2020-11-19 00:09:05 +00:00
, 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;
2021-03-22 16:45:03 +00:00
license = licenses.gpl3Only;
2020-11-19 00:09:05 +00:00
maintainers = with maintainers; [ freezeboy ];
};
}