Unverified Commit e50b14b3 authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

python3Packages.rtslib-fb: fix build failures (#437511)

parents 4f96e4fe 5618a1e4
Loading
Loading
Loading
Loading
+0 −10
Original line number Diff line number Diff line
@@ -16,12 +16,6 @@ buildPythonPackage rec {
  version = "2.2.3";
  pyproject = true;

  # TypeError: 'method' object does not support the context manager protocol
  postPatch = ''
    substituteInPlace rtslib/root.py \
      --replace-fail "Path(restore_file).open" "Path(restore_file).open('r')"
  '';

  src = fetchFromGitHub {
    owner = "open-iscsi";
    repo = "rtslib-fb";
@@ -38,10 +32,6 @@ buildPythonPackage rec {
    pyudev
  ];

  postInstall = ''
    install -Dm555 scripts/targetctl -t $out/bin
  '';

  # No tests
  doCheck = false;