mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-13 07:34:21 +00:00
python3Packages.iterable-io: init at 1.0.0
This commit is contained in:
parent
262a33edde
commit
df9398d405
37
pkgs/development/python-modules/iterable-io/default.nix
Normal file
37
pkgs/development/python-modules/iterable-io/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user