diff --git a/pkgs/development/python-modules/reqif/default.nix b/pkgs/development/python-modules/reqif/default.nix index b45ca4d2bad6..0e6424ab85e7 100644 --- a/pkgs/development/python-modules/reqif/default.nix +++ b/pkgs/development/python-modules/reqif/default.nix @@ -1,6 +1,5 @@ { lib, - beautifulsoup4, buildPythonPackage, fetchFromGitHub, hatchling, @@ -8,7 +7,6 @@ lxml, pytestCheckHook, python, - pythonOlder, xmlschema, }: @@ -17,8 +15,6 @@ buildPythonPackage rec { version = "0.0.46"; pyproject = true; - disabled = pythonOlder "3.7"; - src = fetchFromGitHub { owner = "strictdoc-project"; repo = "reqif"; @@ -32,15 +28,15 @@ buildPythonPackage rec { "\"${placeholder "out"}/${python.sitePackages}/reqif\"" ''; - nativeBuildInputs = [ + build-system = [ hatchling ]; - propagatedBuildInputs = [ - beautifulsoup4 + dependencies = with python.pkgs; [ lxml jinja2 xmlschema + openpyxl ]; nativeCheckInputs = [ pytestCheckHook ];