depot/third_party/nixpkgs/pkgs/development/python-modules/feedgenerator/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

23 lines
597 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; [ ];
};
}