depot/third_party/nixpkgs/pkgs/development/python-modules/requests-cache/default.nix
Default email e18f6fb5f9 Project import generated by Copybara.
GitOrigin-RevId: 9df2cb074d72ea80ac9fd225b29060c8cf13dd39
2021-08-11 16:56:57 +02:00

64 lines
1.1 KiB
Nix

{ lib
, attrs
, buildPythonPackage
, cattrs
, fetchFromGitHub
, itsdangerous
, poetry-core
, pytestCheckHook
, pythonOlder
, pyyaml
, requests
, requests-mock
, rich
, timeout-decorator
, ujson
, url-normalize
}:
buildPythonPackage rec {
pname = "requests-cache";
version = "0.7.3";
disabled = pythonOlder "3.6";
format = "pyproject";
src = fetchFromGitHub {
owner = "reclosedev";
repo = "requests-cache";
rev = "v${version}";
sha256 = "sha256-QGh/ThI5bKE65luVHDSsr6RQq5RReugdZrVvR1R0pUU=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
attrs
cattrs
itsdangerous
pyyaml
requests
ujson
url-normalize
];
checkInputs = [
pytestCheckHook
requests-mock
rich
timeout-decorator
];
# Integration tests require local DBs
pytestFlagsArray = [ "tests/unit" ];
pythonImportsCheck = [ "requests_cache" ];
meta = with lib; {
description = "Persistent cache for requests library";
homepage = "https://github.com/reclosedev/requests-cache";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
};
}