about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/podcastparser/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/podcastparser/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/podcastparser/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/podcastparser/default.nix b/nixpkgs/pkgs/development/python-modules/podcastparser/default.nix
new file mode 100644
index 000000000000..c65a37a99b9d
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/podcastparser/default.nix
@@ -0,0 +1,26 @@
+{ lib, buildPythonPackage, fetchFromGitHub, nose }:
+
+buildPythonPackage rec {
+  pname = "podcastparser";
+  version = "0.6.5";
+
+  src = fetchFromGitHub {
+    owner = "gpodder";
+    repo = "podcastparser";
+    rev = version;
+    sha256 = "1s83iq0mxcikxv6gi003iyavl1ai3siw1d7arijh0g28l0fff23a";
+  };
+
+  checkInputs = [ 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 ];
+  };
+}