Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / expiring-dict / default.nix
blobbe2b5c875d20c6ff2b6c24fbb4a34b28e73bb8db
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , sortedcontainers
5 }:
7 buildPythonPackage rec {
8   pname = "expiring-dict";
9   version = "1.1.0";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-PEBK2x5DaUaMt+Ub+8nEcNfi6GPv4qHHXU7XBtDc4aY=";
15   };
17   propagatedBuildInputs = [
18     sortedcontainers
19   ];
21   pythonImportsCheck = [
22     "expiring_dict"
23   ];
25   meta = with lib; {
26     description = "Python dict with TTL support for auto-expiring caches";
27     homepage = "https://github.com/dparker2/py-expiring-dict";
28     license = licenses.mit;
29     maintainers = with maintainers; [ ];
30   };