depot/third_party/nixpkgs/pkgs/development/python-modules/cachecontrol/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

61 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
cherrypy,
fetchFromGitHub,
flit-core,
filelock,
mock,
msgpack,
pytestCheckHook,
pythonOlder,
redis,
requests,
}:
buildPythonPackage rec {
pname = "cachecontrol";
version = "0.14.0";
pyproject = true;
disabled = pythonOlder "3.7";
__darwinAllowLocalNetworking = true;
src = fetchFromGitHub {
owner = "ionrock";
repo = "cachecontrol";
rev = "refs/tags/v${version}";
hash = "sha256-myyqiUGna+5S2GJGnwZTOfLh49NhjfHAvpUB49dQbgY=";
};
nativeBuildInputs = [ flit-core ];
propagatedBuildInputs = [
msgpack
requests
];
passthru.optional-dependencies = {
filecache = [ filelock ];
redis = [ redis ];
};
nativeCheckInputs = [
cherrypy
mock
pytestCheckHook
requests
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
pythonImportsCheck = [ "cachecontrol" ];
meta = with lib; {
description = "Httplib2 caching for requests";
mainProgram = "doesitcache";
homepage = "https://github.com/ionrock/cachecontrol";
changelog = "https://github.com/psf/cachecontrol/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
};
}