diff --git a/pkgs/development/python-modules/python-calamine/default.nix b/pkgs/development/python-modules/python-calamine/default.nix index cd1b405ecba2..86b49cb39921 100644 --- a/pkgs/development/python-modules/python-calamine/default.nix +++ b/pkgs/development/python-modules/python-calamine/default.nix @@ -1,14 +1,19 @@ { lib, buildPythonPackage, - cargo, fetchFromGitHub, - poetry-core, - pytestCheckHook, - pythonOlder, - rustc, - packaging, rustPlatform, + + # build-system + cargo, + poetry-core, + rustc, + + # dependencies + packaging, + + # tests + pytestCheckHook, }: buildPythonPackage rec { @@ -16,8 +21,6 @@ buildPythonPackage rec { version = "0.2.3"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchFromGitHub { owner = "dimastbk"; repo = "python-calamine";