summary refs log tree commit diff
path: root/pkgs/development/python-modules/feedgenerator/default.nix
blob: c8ea6df7ae0c94f4345f637b2cf3af7e5f0f7f03 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, buildPythonPackage, glibcLocales, fetchPypi, six, pytz }:

buildPythonPackage rec {
  pname = "feedgenerator";
  version = "1.9";

  src = fetchPypi {
    inherit pname version;
    sha256 = "01mirwkm7xfx539hmvj7g9da1j51gw5lsx74dr0glizskjm5vq2s";
  };

  buildInputs = [ glibcLocales ];

  LC_ALL="en_US.UTF-8";

  propagatedBuildInputs = [ six pytz ];

  meta = with stdenv.lib; {
    description = "Standalone version of django.utils.feedgenerator, compatible with Py3k";
    homepage = https://github.com/dmdm/feedgenerator-py3k.git;
    maintainers = with maintainers; [ ];
  };
}