Unverified Commit c9994406 authored by Clément's avatar Clément
Browse files

python3Packages.podcats: fix build failure

the package has been updated to v0.6.x in e007b522.

the patch should have been updated to substitute in podcats/__init__.py,
as it was interacting with a moved file, and the dependency `humanize`
was also missing.

i am not sure why the patch was even needed, so I just removed it.
parent a93bb0c6
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@
  fetchFromGitHub,
  setuptools,
  flask,
  humanize,
  mutagen,
}:

@@ -19,15 +20,11 @@ buildPythonPackage rec {
    sha256 = "sha256-1Jg9bR/3qMim3q5qVwUVbxeLNaXaCU6SplBUaRXeLpo=";
  };

  postPatch = ''
    substituteInPlace podcats.py \
      --replace-fail 'debug=True' 'debug=True, use_reloader=False'
  '';

  build-system = [ setuptools ];

  dependencies = [
    flask
    humanize
    mutagen
  ];