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

27 lines
629 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.5";
2017-03-21 15:56:51 +01:00
src = fetchFromGitHub {
owner = "gpodder";
repo = "podcastparser";
rev = version;
sha256 = "1s83iq0mxcikxv6gi003iyavl1ai3siw1d7arijh0g28l0fff23a";
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 ];
};
}