From 01a46a981727d5c04b21cd841667d0d5f198c787 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 25 Apr 2022 11:23:51 +0200 Subject: [PATCH] python3Packages.collections-extended: add missing input --- .../python-modules/collections-extended/default.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/collections-extended/default.nix b/pkgs/development/python-modules/collections-extended/default.nix index b51a458109c..867226c327b 100644 --- a/pkgs/development/python-modules/collections-extended/default.nix +++ b/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 ]; };