python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / py-lru-cache / default.nix
bloba9d74886950172985303e2b43f0deecb989ff195
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "py-lru-cache";
9   version = "0.1.4";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit version;
14     pname = "py_lru_cache";
15     sha256 = "1w3a8l3ckl1zz0f2vlfrawl9a402r458p7xzhy4sgq8k9rl37pq2";
16   };
18   meta = with lib; {
19     description = "In-memory LRU cache for python";
20     homepage = "https://github.com/stucchio/Python-LRU-cache";
21     license = licenses.gpl3;
22     maintainers = [ ];
23   };