mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
24 lines
595 B
Nix
24 lines
595 B
Nix
{ 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; [ ];
|
|
};
|
|
}
|