1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-06 18:49:12 +03:00
nixpkgs/pkgs/development/python-modules/jsonlines/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
623 B
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
, buildPythonPackage
, attrs
, pytestCheckHook
}:
2019-10-22 20:31:15 +02:00
buildPythonPackage rec {
pname = "jsonlines";
version = "3.1.0";
2019-10-22 20:31:15 +02:00
src = fetchFromGitHub {
owner = "wbolster";
repo = pname;
rev = version;
sha256 = "sha256-eMpUk5s49OyD+cNGdAeKA2LvpXdKta2QjZIFDnIBKC8=";
2019-10-22 20:31:15 +02:00
};
propagatedBuildInputs = [ attrs ];
2019-10-22 20:31:15 +02:00
checkInputs = [ pytestCheckHook ];
2019-10-22 20:31:15 +02:00
meta = with lib; {
description = "Python library to simplify working with jsonlines and ndjson data";
homepage = "https://github.com/wbolster/jsonlines";
2022-07-30 18:57:56 +02:00
maintainers = with maintainers; [ ];
2019-10-22 20:31:15 +02:00
license = licenses.bsd3;
};
}