Skip to content

Commit cf3d531

Browse files
committedMay 24, 2017
pythonPackages.feedgenerator: add missing directory
fixes #26045
1 parent 4e2b190 commit cf3d531

File tree

1 file changed

+22
-0
lines changed
  • pkgs/development/python-modules/feedgenerator

1 file changed

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

0 commit comments

Comments
 (0)
Please sign in to comment.