depot/third_party/nixpkgs/pkgs/development/python-modules/feedgenerator/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

23 lines
589 B
Nix

{ lib, buildPythonPackage, glibcLocales, fetchPypi, six, pytz }:
buildPythonPackage rec {
pname = "feedgenerator";
version = "1.9.1";
src = fetchPypi {
inherit pname version;
sha256 = "0m6fjnrx3sd0bm6pnbhxxx5ywlwqh8bx0lka386kj28mg3fmm2m2";
};
buildInputs = [ glibcLocales ];
LC_ALL="en_US.UTF-8";
propagatedBuildInputs = [ six pytz ];
meta = with lib; {
description = "Standalone version of django.utils.feedgenerator, compatible with Py3k";
homepage = "https://github.com/dmdm/feedgenerator-py3k.git";
maintainers = with maintainers; [ ];
};
}