tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python310Packages.jsonlines: 3.0.0 -> 3.1.0
Sandro Jäckel
3 years ago
fb9bec6b
14021215
+10
-9
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
jsonlines
default.nix
+10
-9
pkgs/development/python-modules/jsonlines/default.nix
···
1
1
-
{ lib, fetchFromGitHub, buildPythonPackage, six
2
2
-
, flake8, pep8-naming, pytest, pytest-cov }:
1
1
+
{ lib
2
2
+
, fetchFromGitHub
3
3
+
, buildPythonPackage
4
4
+
, attrs
5
5
+
, pytestCheckHook
6
6
+
}:
3
7
4
8
buildPythonPackage rec {
5
9
pname = "jsonlines";
6
6
-
version = "3.0.0";
10
10
+
version = "3.1.0";
7
11
8
12
src = fetchFromGitHub {
9
13
owner = "wbolster";
10
14
repo = pname;
11
15
rev = version;
12
12
-
sha256 = "1242bvk208vjaw8zl1d7ydb0i05v8fwdgi92d3bi1vaji9s2hv65";
16
16
+
sha256 = "sha256-eMpUk5s49OyD+cNGdAeKA2LvpXdKta2QjZIFDnIBKC8=";
13
17
};
14
18
15
15
-
propagatedBuildInputs = [ six ];
19
19
+
propagatedBuildInputs = [ attrs ];
16
20
17
17
-
checkInputs = [ flake8 pep8-naming pytest pytest-cov ];
18
18
-
checkPhase = ''
19
19
-
pytest
20
20
-
'';
21
21
+
checkInputs = [ pytestCheckHook ];
21
22
22
23
meta = with lib; {
23
24
description = "Python library to simplify working with jsonlines and ndjson data";