mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-01 08:25:55 +03:00
pythonPackages.podcats: Init at 0.5.0
This commit is contained in:
parent
e0d6edddd7
commit
977c207f22
28
pkgs/development/python-modules/podcats/default.nix
Normal file
28
pkgs/development/python-modules/podcats/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user