pythonPackages.podcastparser: init at 0.6.1

This commit is contained in:
Jörg Thalheim 2017-03-21 15:56:51 +01:00
parent cb49c14324
commit 64218457c4
No known key found for this signature in database
GPG key ID: CA4106B8D7CC79FA
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib, buildPythonPackage, fetchFromGitHub, nose }:
buildPythonPackage rec {
pname = "podcastparser";
version = "0.6.1";
name = "${pname}-${version}";
src = fetchFromGitHub {
owner = "gpodder";
repo = "podcastparser";
rev = version;
sha256 = "0q3qc8adykmm692ha0c37xd6wbj830zlq900fyw6vrfan9bgdj5y";
};
propagatedBuildInputs = [ ];
buildInputs = [ nose ];
checkPhase = "nosetests test_*.py";
meta = {
description = "podcastparser is a simple, fast and efficient podcast parser written in Python.";
homepage = http://gpodder.org/podcastparser/;
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ mic92 ];
};
}

View file

@ -8949,6 +8949,7 @@ in {
};
};
podcastparser = callPackage ../development/python-modules/podcastparser { };
poppler-qt4 = buildPythonPackage rec {
name = "poppler-qt4-${version}";