1{ stdenv
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "feedparser";
8 version = "5.2.1";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "1ycva69bqssalhqg45rbrfipz3l6hmycszy26k0351fhq990c0xx";
13 };
14
15 # lots of networking failures
16 doCheck = false;
17
18 meta = with stdenv.lib; {
19 homepage = http://code.google.com/p/feedparser/;
20 description = "Universal feed parser";
21 license = licenses.bsd2;
22 maintainers = with maintainers; [ domenkozar ];
23 };
24
25}