1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "PyRSS2Gen"; 8 version = "1.1"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "1rvf5jw9hknqz02rp1vg8abgb1lpa0bc65l7ylmlillqx7bswq3r"; 13 }; 14 15 # No tests in archive 16 doCheck = false; 17 18 meta = with lib; { 19 homepage = "http://www.dalkescientific.om/Python/PyRSS2Gen.html"; 20 description = "Library for generating RSS 2.0 feeds"; 21 license = licenses.bsd2; 22 maintainers = with maintainers; [ domenkozar ]; 23 }; 24 25}