pythonPackages.feedgenerator: add missing directory

fixes #26045
This commit is contained in:
Jörg Thalheim 2017-05-24 07:15:02 +01:00
parent 4e2b190d52
commit cf3d531531
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA

View File

@ -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 ];
};
}