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-02-14 08:37:12 +01:00
version = "3.1.0";
src = fetchPypi {
inherit pname version;
2019-02-14 08:37:12 +01:00
sha256 = "9efcc9fab3b49ab833475702b55edd5ae07af1af7a4c627678980b45e459c460";
};
meta = with stdenv.lib; {
description = "Extensible memoizing collections and decorators";
homepage = "https://github.com/tkem/cachetools";
license = licenses.mit;
};
}