887295fd2d
@the-kenny did a good job in the past and is set as maintainer in many package, however since 2017-2018 he stopped contributing. To create less confusion in pull requests when people try to request his feedback, I removed him as maintainer from all packages.
27 lines
688 B
Nix
27 lines
688 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, flask, mutagen }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "podcats";
|
|
version = "0.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jakubroztocil";
|
|
repo = "podcats";
|
|
rev = "v${version}";
|
|
sha256 = "0zjdgry5n209rv19kj9yaxy7c7zq5gxr488izrgs4sc75vdzz8xc";
|
|
};
|
|
|
|
patchPhase = ''
|
|
substituteInPlace podcats.py \
|
|
--replace 'debug=True' 'debug=True, use_reloader=False'
|
|
'';
|
|
|
|
propagatedBuildInputs = [ flask mutagen ];
|
|
|
|
meta = {
|
|
description = "Application that generates RSS feeds for podcast episodes from local audio files";
|
|
homepage = "https://github.com/jakubroztocil/podcats";
|
|
license = lib.licenses.bsd2;
|
|
};
|
|
}
|