depot/third_party/nixpkgs/pkgs/development/python-modules/diskcache/default.nix
Default email ce641f4048 Project import generated by Copybara.
GitOrigin-RevId: bc5d68306b40b8522ffb69ba6cff91898c2fbbff
2021-12-06 17:07:01 +01:00

50 lines
997 B
Nix

{ stdenv
, lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pytest-cov
, pytest-xdist
, pytest-django
, mock
}:
buildPythonPackage rec {
pname = "diskcache";
version = "5.2.1";
src = fetchFromGitHub {
owner = "grantjenks";
repo = "python-diskcache";
rev = "v${version}";
sha256 = "sha256-dWtEyyWpg0rxEwyhBdPyApzgS9o60HVGbtY76ELHvX8=";
};
checkInputs = [
pytestCheckHook
pytest-cov
pytest-xdist
pytest-django
mock
];
# Darwin sandbox causes most tests to fail.
doCheck = !stdenv.isDarwin;
pythonImportsCheck = [ "diskcache" ];
disabledTests = [
# very time sensitive, can fail on over subscribed machines
"test_incr_update_keyerror"
];
pytestFlagsArray = [
"-n $NIX_BUILD_CORES"
];
meta = with lib; {
description = "Disk and file backed persistent cache";
homepage = "http://www.grantjenks.com/docs/diskcache/";
license = licenses.asl20;
maintainers = [ maintainers.costrouc ];
};
}