python310Packages.jsonlines: 3.0.0 -> 3.1.0

This commit is contained in:
Sandro Jäckel
2022-08-19 21:06:07 +02:00
parent 14021215f1
commit fb9bec6bed
@@ -1,23 +1,24 @@
{ lib, fetchFromGitHub, buildPythonPackage, six
, flake8, pep8-naming, pytest, pytest-cov }:
{ lib
, fetchFromGitHub
, buildPythonPackage
, attrs
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "jsonlines";
version = "3.0.0";
version = "3.1.0";
src = fetchFromGitHub {
owner = "wbolster";
repo = pname;
rev = version;
sha256 = "1242bvk208vjaw8zl1d7ydb0i05v8fwdgi92d3bi1vaji9s2hv65";
sha256 = "sha256-eMpUk5s49OyD+cNGdAeKA2LvpXdKta2QjZIFDnIBKC8=";
};
propagatedBuildInputs = [ six ];
propagatedBuildInputs = [ attrs ];
checkInputs = [ flake8 pep8-naming pytest pytest-cov ];
checkPhase = ''
pytest
'';
checkInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Python library to simplify working with jsonlines and ndjson data";