Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 688 B view raw
1{ lib, buildPythonPackage, fetchFromGitHub, flask, mutagen }: 2 3buildPythonPackage rec { 4 pname = "podcats"; 5 version = "0.5.0"; 6 7 src = fetchFromGitHub { 8 owner = "jakubroztocil"; 9 repo = "podcats"; 10 rev = "v${version}"; 11 sha256 = "0zjdgry5n209rv19kj9yaxy7c7zq5gxr488izrgs4sc75vdzz8xc"; 12 }; 13 14 patchPhase = '' 15 substituteInPlace podcats.py \ 16 --replace 'debug=True' 'debug=True, use_reloader=False' 17 ''; 18 19 propagatedBuildInputs = [ flask mutagen ]; 20 21 meta = { 22 description = "Application that generates RSS feeds for podcast episodes from local audio files"; 23 homepage = "https://github.com/jakubroztocil/podcats"; 24 license = lib.licenses.bsd2; 25 }; 26}