summary refs log tree commit diff
path: root/pkgs/development/python-modules/podcastparser
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2017-03-21 15:56:51 +0100
committerJörg Thalheim <joerg@thalheim.io>2017-03-21 17:06:05 +0100
commit64218457c48ad2f9ffcc9f1551b3afd7ebf562ba (patch)
tree3227f503a98d1fa5a7805f6902afaa6a48d2669a /pkgs/development/python-modules/podcastparser
parentcb49c1432417f9576ed12613f0374b3bc23587c2 (diff)
downloadnixpkgs-64218457c48ad2f9ffcc9f1551b3afd7ebf562ba.tar
nixpkgs-64218457c48ad2f9ffcc9f1551b3afd7ebf562ba.tar.gz
nixpkgs-64218457c48ad2f9ffcc9f1551b3afd7ebf562ba.tar.bz2
nixpkgs-64218457c48ad2f9ffcc9f1551b3afd7ebf562ba.tar.lz
nixpkgs-64218457c48ad2f9ffcc9f1551b3afd7ebf562ba.tar.xz
nixpkgs-64218457c48ad2f9ffcc9f1551b3afd7ebf562ba.tar.zst
nixpkgs-64218457c48ad2f9ffcc9f1551b3afd7ebf562ba.zip
pythonPackages.podcastparser: init at 0.6.1
Diffstat (limited to 'pkgs/development/python-modules/podcastparser')
-rw-r--r--pkgs/development/python-modules/podcastparser/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/podcastparser/default.nix b/pkgs/development/python-modules/podcastparser/default.nix
new file mode 100644
index 00000000000..ffdfa7a323a
--- /dev/null
+++ b/pkgs/development/python-modules/podcastparser/default.nix
@@ -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 ];
+  };
+}