nixpkgs/pkgs/development/python-modules/cachetools/default.nix

18 lines
442 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, isPy27 }:
buildPythonPackage rec {
pname = "cachetools";
2020-06-06 07:47:00 +01:00
version = "4.1.0";
src = fetchPypi {
inherit pname version;
2020-06-06 07:47:00 +01:00
sha256 = "1d057645db16ca7fe1f3bd953558897603d6f0b9c51ed9d11eb4d071ec4e2aab";
};
meta = with stdenv.lib; {
description = "Extensible memoizing collections and decorators";
homepage = "https://github.com/tkem/cachetools";
license = licenses.mit;
};
}