python3Packages.iterable-io: init at 1.0.0

This commit is contained in:
Martin Joerg 2024-05-05 17:07:34 +02:00
parent 262a33edde
commit df9398d405
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "iterable-io";
version = "1.0.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "pR0Ps";
repo = "iterable-io";
rev = "refs/tags/v${version}";
hash = "sha256-+PSINKS7/FeGHYvkOASA5m+1pBpKfURfylZ8CwKijgA=";
};
nativeBuildInputs = [ setuptools ];
pythonImportsCheck = [ "iterableio" ];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "Library to adapt iterables to a file-like interface";
homepage = "https://github.com/pR0Ps/iterable-io";
changelog = "https://github.com/pR0Ps/iterable-io/blob/v${version}/CHANGELOG.md";
license = lib.licenses.lgpl3Only;
maintainers = [ lib.maintainers.mjoerg ];
};
}

View File

@ -5941,6 +5941,8 @@ self: super: with self; {
itemloaders = callPackage ../development/python-modules/itemloaders { };
iterable-io = callPackage ../development/python-modules/iterable-io { };
iteration-utilities = callPackage ../development/python-modules/iteration-utilities { };
iterative-telemetry = callPackage ../development/python-modules/iterative-telemetry { };