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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "bbaa39c3dede00175df2dc2b03d0cf18dd2d32a7de7beb68072d13043c9edb20";
  };

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