Skip to content

Commit

Permalink
pythonPackages.feedgenerator: add missing directory
Browse files Browse the repository at this point in the history
fixes #26045
  • Loading branch information
Mic92 committed May 24, 2017
1 parent 4e2b190 commit cf3d531
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pkgs/development/python-modules/feedgenerator/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{ stdenv, buildPythonPackage, glibcLocales, fetchurl, six, pytz }:

buildPythonPackage rec {
name = "feedgenerator-1.9";

src = fetchurl {
url = "mirror://pypi/f/feedgenerator/${name}.tar.gz";
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; [ garbas ];
};
}

0 comments on commit cf3d531

Please sign in to comment.