Unverified Commit 0a91f281 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python310Packages.pymedio: remove postPatch section

parent 3bf1d1f6
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -13,6 +13,8 @@
buildPythonPackage rec {
  pname = "pymedio";
  version = "0.2.14";
  format = "setuptools";

  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
@@ -22,11 +24,6 @@ buildPythonPackage rec {
    hash = "sha256-x3CHoWASDrUoCXfj73NF+0Y/3Mb31dK2Lh+o4OD9ryk=";
  };

  # relax Python dep to work with 3.10.x and 3.11.x
  postPatch = ''
    substituteInPlace setup.cfg --replace "!=3.10.*," "" --replace "!=3.11.*" ""
  '';

  propagatedBuildInputs = [
    numpy
  ];