nixpkgs/pkgs/development/python-modules/repoze_lru/default.nix
2021-01-25 18:31:47 +01:00

23 lines
464 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "repoze.lru";
version = "0.7";
src = fetchPypi {
inherit pname version;
sha256 = "0429a75e19380e4ed50c0694e26ac8819b4ea7851ee1fc7583c8572db80aff77";
};
meta = with lib; {
description = "A tiny LRU cache implementation and decorator";
homepage = "http://www.repoze.org/";
license = licenses.bsd0;
maintainers = with maintainers; [ domenkozar ];
};
}