summary refs log blame commit diff
path: root/pkgs/development/python-modules/feedgenerator/default.nix
blob: d5eb1306b398625568c84c71f8988843f07c4029 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                

                        
                          
                    
 

                          
                                                                    







                                       
                    
                                                                                           
                                                                
                                        

    
{ 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; [ ];
  };
}