added gpodder package

This commit is contained in:
Sven Keidel
2014-07-20 21:12:05 +02:00
parent 5c0659f2b4
commit eeeed00950
4 changed files with 63 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{ stdenv, fetchurl, python, buildPythonPackage, pythonPackages }:
buildPythonPackage rec {
name = "mygpoclient-1.7";
src = fetchurl {
url = "https://thp.io/2010/mygpoclient/${name}.tar.gz";
sha256 = "6a0b7b1fe2b046875456e14eda3e42430e493bf2251a64481cf4fd1a1e21a80e";
};
buildInputs = [ pythonPackages.nose pythonPackages.minimock ];
checkPhase = "make test";
}