1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pythonPackages.podcats: Init at 0.5.0

This commit is contained in:
Moritz Ulrich 2018-05-15 23:23:30 +02:00
parent e0d6edddd7
commit 977c207f22
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib, buildPythonPackage, fetchFromGitHub, flask, mutagen }:
buildPythonPackage rec {
pname = "podcats";
version = "v0.5.0";
name = "${pname}-${version}";
src = fetchFromGitHub {
owner = "jakubroztocil";
repo = "podcats";
rev = 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;
maintainers = with lib.maintainers; [ the-kenny ];
};
}

View file

@ -3845,6 +3845,8 @@ in {
podcastparser = callPackage ../development/python-modules/podcastparser { };
podcats = callPackage ../development/python-modules/podcats { };
pomegranate = callPackage ../development/python-modules/pomegranate { };
poppler-qt5 = callPackage ../development/python-modules/poppler-qt5 {