Merge pull request #170234 from fabaff/collections-extended-fix
python3Packages.collections-extended: add missing input
This commit is contained in:
commit
01aaeada4e
1 changed files with 9 additions and 4 deletions
|
@ -1,10 +1,12 @@
|
||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pythonOlder
|
, hypothesis
|
||||||
, poetry-core
|
, poetry-core
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "collections-extended";
|
pname = "collections-extended";
|
||||||
version = "2.0.2";
|
version = "2.0.2";
|
||||||
|
@ -16,7 +18,7 @@ buildPythonPackage rec {
|
||||||
owner = "mlenzen";
|
owner = "mlenzen";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-cK13+CQUELKSiLpG747+C+RB5b6luu0mWLLXTT+uGH4=";
|
hash = "sha256-cK13+CQUELKSiLpG747+C+RB5b6luu0mWLLXTT+uGH4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -24,14 +26,17 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
|
hypothesis
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [ "collections_extended" ];
|
pythonImportsCheck = [
|
||||||
|
"collections_extended"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
description = "Extra Python Collections - bags (multisets), setlists (unique list/indexed set), RangeMap and IndexedDict";
|
||||||
homepage = "https://github.com/mlenzen/collections-extended";
|
homepage = "https://github.com/mlenzen/collections-extended";
|
||||||
description = "Extra Python Collections - bags (multisets), setlists (unique list / indexed set), RangeMap and IndexedDict";
|
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ exarkun ];
|
maintainers = with maintainers; [ exarkun ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue