1{ stdenv, buildPythonPackage, glibcLocales, fetchPypi, six, pytz }:
2
3buildPythonPackage rec {
4 pname = "feedgenerator";
5 version = "1.9.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "0m6fjnrx3sd0bm6pnbhxxx5ywlwqh8bx0lka386kj28mg3fmm2m2";
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; [ ];
22 };
23}