Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / py-lru-cache / default.nix
blob85045a156bd5e437e5e75a74712357183648f0f1
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "py-lru-cache";
8   version = "0.1.4";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit version;
13     pname = "py_lru_cache";
14     sha256 = "1w3a8l3ckl1zz0f2vlfrawl9a402r458p7xzhy4sgq8k9rl37pq2";
15   };
17   meta = with lib; {
18     description = "An in-memory LRU cache for python";
19     homepage = "https://github.com/stucchio/Python-LRU-cache";
20     license = licenses.gpl3;
21     maintainers = [ ];
22   };