Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 24 lines 679 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, dateutil, lxml }: 2 3buildPythonPackage rec { 4 pname = "feedgen"; 5 version = "0.9.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0jl0b87l7v6c0f1nx6k81skjhdj5i11kmchdjls00mynpvdip0cf"; 10 }; 11 12 propagatedBuildInputs = [ dateutil lxml ]; 13 14 # No tests in archive 15 doCheck = false; 16 17 meta = with stdenv.lib; { 18 description = "Python module to generate ATOM feeds, RSS feeds and Podcasts."; 19 downloadPage = https://github.com/lkiesow/python-feedgen/releases; 20 homepage = https://github.com/lkiesow/python-feedgen; 21 license = with licenses; [ bsd2 lgpl3 ]; 22 maintainers = with maintainers; [ casey ]; 23 }; 24}