about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cachetools/default.nix
blob: fce9ae7a7591e02d0e81d7cd726a26281e9b4de9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
}:

buildPythonPackage rec {
  pname = "cachetools";
  version = "4.2.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-9Gninnqkz/ZNjeSq2VznbejqESWhbGjg2T9lw8Pckuk=";
  };

  meta = with lib; {
    description = "Extensible memoizing collections and decorators";
    homepage = "https://github.com/tkem/cachetools";
    license = licenses.mit;
  };
}