Files
nixpkgs/pkgs/development/python-modules/podcastparser/default.nix
T

27 lines
627 B
Nix
Raw Normal View History

2017-03-21 15:56:51 +01:00
{ lib, buildPythonPackage, fetchFromGitHub, nose }:
buildPythonPackage rec {
pname = "podcastparser";
version = "0.6.4";
2017-03-21 15:56:51 +01:00
src = fetchFromGitHub {
owner = "gpodder";
repo = "podcastparser";
rev = version;
sha256 = "10bk93fqsws360q1gkjvfzjda3351169zbr6v5lq9raa3mg1ln52";
2017-03-21 15:56:51 +01:00
};
2019-01-05 11:54:27 +01:00
checkInputs = [ nose ];
2017-03-21 15:56:51 +01:00
2019-01-05 11:54:27 +01:00
checkPhase = ''
nosetests test_*.py
'';
2017-03-21 15:56:51 +01:00
meta = {
description = "podcastparser is a simple, fast and efficient podcast parser written in Python.";
homepage = http://gpodder.org/podcastparser/;
license = lib.licenses.bsd2;
2017-03-21 15:56:51 +01:00
maintainers = with lib.maintainers; [ mic92 ];
};
}