ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / lru-dict / default.nix
blob36b8c89789547371cae6fae86c3fce9bcf10f018
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 }:
7 let
8   pname = "lru-dict";
9   version = "1.1.8";
11 buildPythonPackage {
12   inherit pname version;
13   format = "setuptools";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-h4vI70Bz5c+5U9/Bz0WF20HouBTAEGq9400A7g0LMRU=";
18   };
20   checkInputs = [
21     pytestCheckHook
22   ];
24   pythonImportsCheck = [
25     "lru"
26   ];
28   meta = with lib; {
29     description = "Fast and memory efficient LRU cache for Python";
30     homepage = "https://github.com/amitdev/lru-dict";
31     license = licenses.mit;
32     maintainers = with maintainers; [ hexa ];
33   };