Skip to content

Commit

Permalink
pythonPackages.podcats: Init at 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
the-kenny committed May 15, 2018
1 parent e0d6edd commit 977c207
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pkgs/development/python-modules/podcats/default.nix
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -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 {
Expand Down

0 comments on commit 977c207

Please sign in to comment.