python310Packages.iteration-utilities: init at 0.11.0

This commit is contained in:
Jonathan Ringer
2023-01-12 19:05:53 +02:00
committed by Artturin
parent a113c6f06f
commit 4900972f9c
2 changed files with 30 additions and 0 deletions
@@ -0,0 +1,28 @@
{ lib, buildPythonPackage, fetchFromGitHub
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "iteration-utilities";
version = "0.11.0";
src = fetchFromGitHub {
owner = "MSeifert04";
repo = "iteration_utilities";
rev = "v${version}";
sha256 = "sha256-Q/ZuwAf+NPikN8/eltwaUilnLw4DKFm864tUe6GLDak=";
};
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "iteration_utilities" ];
meta = with lib; {
description = "Utilities based on Pythons iterators and generators";
homepage = "https://github.com/MSeifert04/iteration_utilities";
license = licenses.asl20;
maintainers = with maintainers; [ jonringer ];
};
}
+2
View File
@@ -4727,6 +4727,8 @@ self: super: with self; {
itemloaders = callPackage ../development/python-modules/itemloaders { };
iteration-utilities = callPackage ../development/python-modules/iteration-utilities { };
iterm2 = callPackage ../development/python-modules/iterm2 { };
itsdangerous = callPackage ../development/python-modules/itsdangerous { };