python3Packages.jaraco-stream: 3.0.3 -> 3.0.4

This commit is contained in:
Martin Weinelt 2024-09-29 17:05:06 +02:00
parent 5fa11aa5e7
commit de8edd7772

View File

@ -1,24 +1,42 @@
{
lib,
buildPythonPackage,
fetchPypi,
more-itertools,
pytestCheckHook,
pythonOlder,
setuptools-scm,
six,
setuptools,
}:
buildPythonPackage rec {
pname = "jaraco-stream";
version = "3.0.3";
format = "setuptools";
version = "3.0.4";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "jaraco.stream";
pname = "jaraco_stream";
inherit version;
sha256 = "3af4b0441090ee65bd6dde930d29f93f50c4a2fe6048e2a9d288285f5e4dc441";
sha256 = "sha256-4rxQKOch7SzIUrluyaM/K3Zk6bLb+H7vvmF9EmZBk0s=";
};
build-system = [ setuptools-scm ];
propagatedBuildInputs = [ more-itertools ];
pythonNamespaces = [ "jaraco" ];
doCheck = false;
buildInputs = [ setuptools-scm ];
propagatedBuildInputs = [ six ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "jaraco.stream" ];
meta = with lib; {
description = "Module with routines for handling streaming data";
homepage = "https://github.com/jaraco/jaraco.stream";
changelog = "https://github.com/jaraco/jaraco.stream/blob/v${version}/NEWS.rst";
license = licenses.mit;
maintainers = [ ];
};
}