1{ stdenv, buildPythonPackage, glibcLocales, fetchPypi, six, pytz }: 2 3buildPythonPackage rec { 4 pname = "feedgenerator"; 5 version = "1.9"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "01mirwkm7xfx539hmvj7g9da1j51gw5lsx74dr0glizskjm5vq2s"; 10 }; 11 12 buildInputs = [ glibcLocales ]; 13 14 LC_ALL="en_US.UTF-8"; 15 16 propagatedBuildInputs = [ six pytz ]; 17 18 meta = with stdenv.lib; { 19 description = "Standalone version of django.utils.feedgenerator, compatible with Py3k"; 20 homepage = https://github.com/dmdm/feedgenerator-py3k.git; 21 maintainers = with maintainers; [ garbas ]; 22 }; 23}