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