Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 534 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "pyrss2gen"; 8 version = "1.1"; 9 10 src = fetchPypi { 11 pname = "PyRSS2Gen"; 12 inherit version; 13 sha256 = "1rvf5jw9hknqz02rp1vg8abgb1lpa0bc65l7ylmlillqx7bswq3r"; 14 }; 15 16 # No tests in archive 17 doCheck = false; 18 19 meta = with lib; { 20 homepage = "http://www.dalkescientific.om/Python/PyRSS2Gen.html"; 21 description = "Library for generating RSS 2.0 feeds"; 22 license = licenses.bsd2; 23 maintainers = with maintainers; [ domenkozar ]; 24 }; 25 26}