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-07-31 09:56:36 +01:00
version = "4.1.1";
src = fetchPypi {
inherit pname version;
2020-07-31 09:56:36 +01:00
sha256 = "bbaa39c3dede00175df2dc2b03d0cf18dd2d32a7de7beb68072d13043c9edb20";
};
meta = with stdenv.lib; {
description = "Extensible memoizing collections and decorators";
homepage = "https://github.com/tkem/cachetools";
license = licenses.mit;
};
}