11 buildPythonPackage rec {
12 pname = "collections-extended";
16 # https://github.com/mlenzen/collections-extended/issues/198
17 disabled = pythonOlder "3.6" || pythonAtLeast "3.11";
19 src = fetchFromGitHub {
23 hash = "sha256-cK13+CQUELKSiLpG747+C+RB5b6luu0mWLLXTT+uGH4=";
35 pythonImportsCheck = [
36 "collections_extended"
40 description = "Extra Python Collections - bags (multisets), setlists (unique list/indexed set), RangeMap and IndexedDict";
41 homepage = "https://github.com/mlenzen/collections-extended";
42 license = licenses.asl20;
43 maintainers = with maintainers; [ exarkun ];