Unverified Commit 91d78878 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

python313Packages.reqif: fix runtime dependency, minor cleanup (#437894)

parents e44b3a97 fff977b9
Loading
Loading
Loading
Loading
+3 −7
Original line number Diff line number Diff line
{
  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 ];