about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pylru/default.nix
blob: 79bb6dbd9a2b9751c8dc17c98676494280f6c711 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, buildPythonPackage, fetchPypi }:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "0b0pq0l7xv83dfsajsc49jcxzc99kb9jfx1a1dlx22hzcy962dvi";
  };

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