aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/ndjson/default.nix
blob: 175b04d310743e363165ad69693310d2e4ff0f8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 ];
  };
}