about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cachetools/default.nix
blob: 2581ba9c95f0d6a073dc40df96c4b37f4dc0af6c (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 = "3.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "9efcc9fab3b49ab833475702b55edd5ae07af1af7a4c627678980b45e459c460";
  };

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