ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
69 lines
1.2 KiB
Nix
69 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 ];
|
|
};
|
|
}
|