nixpkgs/pkgs/development/python-modules/cachetools/default.nix
2020-08-04 21:54:42 +02:00

18 lines
442 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, isPy27 }:
buildPythonPackage rec {
pname = "cachetools";
version = "4.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "bbaa39c3dede00175df2dc2b03d0cf18dd2d32a7de7beb68072d13043c9edb20";
};
meta = with stdenv.lib; {
description = "Extensible memoizing collections and decorators";
homepage = "https://github.com/tkem/cachetools";
license = licenses.mit;
};
}