depot/third_party/nixpkgs/pkgs/development/python-modules/py-lru-cache/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

24 lines
485 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "py-lru-cache";
version = "0.1.4";
format = "setuptools";
src = fetchPypi {
inherit version;
pname = "py_lru_cache";
sha256 = "1w3a8l3ckl1zz0f2vlfrawl9a402r458p7xzhy4sgq8k9rl37pq2";
};
meta = with lib; {
description = "In-memory LRU cache for python";
homepage = "https://github.com/stucchio/Python-LRU-cache";
license = licenses.gpl3;
maintainers = [ ];
};
}