Merge pull request #261046 from r-ryantm/auto-update/python310Packages.iteration-utilities
python310Packages.iteration-utilities: 0.11.0 -> 0.12.0
This commit is contained in:
commit
cbd2065525
1 changed files with 14 additions and 5 deletions
|
@ -1,27 +1,36 @@
|
||||||
{ lib, buildPythonPackage, fetchFromGitHub
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "iteration-utilities";
|
pname = "iteration-utilities";
|
||||||
version = "0.11.0";
|
version = "0.12.0";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "MSeifert04";
|
owner = "MSeifert04";
|
||||||
repo = "iteration_utilities";
|
repo = "iteration_utilities";
|
||||||
rev = "v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-Q/ZuwAf+NPikN8/eltwaUilnLw4DKFm864tUe6GLDak=";
|
hash = "sha256-KdL0lwlmBEG++JRociR92HdYxzArTeL5uEyUjvvwi1Y=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [ "iteration_utilities" ];
|
pythonImportsCheck = [
|
||||||
|
"iteration_utilities"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Utilities based on Pythons iterators and generators";
|
description = "Utilities based on Pythons iterators and generators";
|
||||||
homepage = "https://github.com/MSeifert04/iteration_utilities";
|
homepage = "https://github.com/MSeifert04/iteration_utilities";
|
||||||
|
changelog = "https://github.com/MSeifert04/iteration_utilities/releases/tag/v${version}";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ jonringer ];
|
maintainers = with maintainers; [ jonringer ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue