python3Packages.collections-extended: add missing input

main
Fabian Affolter 2 years ago
parent a6633d255f
commit 01a46a9817
  1. 13
      pkgs/development/python-modules/collections-extended/default.nix

@ -1,10 +1,12 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, hypothesis
, poetry-core
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "collections-extended";
version = "2.0.2";
@ -16,7 +18,7 @@ buildPythonPackage rec {
owner = "mlenzen";
repo = pname;
rev = "v${version}";
sha256 = "sha256-cK13+CQUELKSiLpG747+C+RB5b6luu0mWLLXTT+uGH4=";
hash = "sha256-cK13+CQUELKSiLpG747+C+RB5b6luu0mWLLXTT+uGH4=";
};
nativeBuildInputs = [
@ -24,14 +26,17 @@ buildPythonPackage rec {
];
checkInputs = [
hypothesis
pytestCheckHook
];
pythonImportsCheck = [ "collections_extended" ];
pythonImportsCheck = [
"collections_extended"
];
meta = with lib; {
description = "Extra Python Collections - bags (multisets), setlists (unique list/indexed set), RangeMap and IndexedDict";
homepage = "https://github.com/mlenzen/collections-extended";
description = "Extra Python Collections - bags (multisets), setlists (unique list / indexed set), RangeMap and IndexedDict";
license = licenses.asl20;
maintainers = with maintainers; [ exarkun ];
};

Loading…
Cancel
Save