depot/third_party/nixpkgs/pkgs/development/python-modules/podcastparser/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

26 lines
635 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub, nose }:
buildPythonPackage rec {
pname = "podcastparser";
version = "0.6.5";
src = fetchFromGitHub {
owner = "gpodder";
repo = "podcastparser";
rev = version;
sha256 = "1s83iq0mxcikxv6gi003iyavl1ai3siw1d7arijh0g28l0fff23a";
};
nativeCheckInputs = [ 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.bsd2;
maintainers = with lib.maintainers; [ mic92 ];
};
}