nixpkgs/pkgs/development/python-modules/requests-cache/default.nix
2021-07-22 11:28:59 +02:00

65 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.2";
disabled = pythonOlder "3.6";
format = "pyproject";
src = fetchFromGitHub {
owner = "reclosedev";
repo = "requests-cache";
rev = "v${version}";
sha256 = "055dfyjm8dqwr62v86lyvq4r04692gmvlgp86218vwvzgm7p3p2c";
};
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 ];
};
}