lol

python310Packages.jsonlines: 3.0.0 -> 3.1.0

+10 -9
+10 -9
pkgs/development/python-modules/jsonlines/default.nix
··· 1 - { lib, fetchFromGitHub, buildPythonPackage, six 2 - , flake8, pep8-naming, pytest, pytest-cov }: 1 + { lib 2 + , fetchFromGitHub 3 + , buildPythonPackage 4 + , attrs 5 + , pytestCheckHook 6 + }: 3 7 4 8 buildPythonPackage rec { 5 9 pname = "jsonlines"; 6 - version = "3.0.0"; 10 + version = "3.1.0"; 7 11 8 12 src = fetchFromGitHub { 9 13 owner = "wbolster"; 10 14 repo = pname; 11 15 rev = version; 12 - sha256 = "1242bvk208vjaw8zl1d7ydb0i05v8fwdgi92d3bi1vaji9s2hv65"; 16 + sha256 = "sha256-eMpUk5s49OyD+cNGdAeKA2LvpXdKta2QjZIFDnIBKC8="; 13 17 }; 14 18 15 - propagatedBuildInputs = [ six ]; 19 + propagatedBuildInputs = [ attrs ]; 16 20 17 - checkInputs = [ flake8 pep8-naming pytest pytest-cov ]; 18 - checkPhase = '' 19 - pytest 20 - ''; 21 + checkInputs = [ pytestCheckHook ]; 21 22 22 23 meta = with lib; { 23 24 description = "Python library to simplify working with jsonlines and ndjson data";