Unverified Commit 3ec8549e authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

python3Packages: unbreak packages that no longer seem to be broken (#406692)

parents 420c6efb 88b337c8
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -97,8 +97,5 @@ stdenv.mkDerivation rec {
    ];
    platforms = with platforms; unix;
    mainProgram = "f3d";
    # error: use of undeclared identifier 'NSMenuItem'
    # adding AppKit does not solve it
    broken = with stdenv.hostPlatform; isDarwin && isx86_64;
  };
}
+0 −1
Original line number Diff line number Diff line
@@ -141,7 +141,6 @@ stdenv.mkDerivation rec {
  '';

  meta = with lib; {
    broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64);
    description = "Toolkit for the simulation of the passage of particles through matter";
    longDescription = ''
      Geant4 is a toolkit for the simulation of the passage of particles through matter.
+0 −3
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  buildPythonPackage,
  fetchPypi,
  pytestCheckHook,
@@ -60,7 +59,5 @@ buildPythonPackage rec {
    homepage = "https://www.argosopentech.com";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ misuzu ];
    # Segfaults at import
    broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64;
  };
}
+0 −3
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  buildPythonPackage,
  fetchFromGitHub,
  pythonOlder,
@@ -106,7 +105,5 @@ buildPythonPackage rec {
      mslingsby
      kfollesdal
    ];
    # mismatched type expected u8, found i8
    broken = stdenv.hostPlatform.isAarch64;
  };
}
+0 −2
Original line number Diff line number Diff line
@@ -83,7 +83,5 @@ buildPythonPackage rec {
    homepage = "https://github.com/CGAL/cgal-swig-bindings";
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [ pbsds ];
    # error: no template named 'unary_function' in namespace 'boost::functional::detail'
    broken = stdenv.hostPlatform.isDarwin;
  };
}
Loading