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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "90f1d559512fc073483fe573ef5ceb39bf6ad3d39edc98dc55178a2b2b176fa3";
  };

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