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

18 lines
434 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "cachetools";
2019-05-30 07:49:48 +01:00
version = "3.1.1";
src = fetchPypi {
inherit pname version;
2019-05-30 07:49:48 +01:00
sha256 = "8ea2d3ce97850f31e4a08b0e2b5e6c34997d7216a9d2c98e0f3978630d4da69a";
};
meta = with stdenv.lib; {
description = "Extensible memoizing collections and decorators";
homepage = "https://github.com/tkem/cachetools";
license = licenses.mit;
};
}