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

                        
                  
                    
 

                          
                                                                                


                    
                                                  




                                                                     
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "pylru";
  version = "1.2.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "492f934bb98dc6c8b2370c02c95c65516ddc08c8f64d27f70087eb038621d297";
  };

  meta = with lib; {
    homepage = "https://github.com/jlhutch/pylru";
    description = "A least recently used (LRU) cache implementation";
    license = licenses.gpl2;
    maintainers = with maintainers; [ abbradar ];
  };
}