9 buildPythonPackage rec {
10 pname = "lazy-loader";
14 src = fetchFromGitHub {
15 owner = "scientific-python";
18 hash = "sha256-4Kid6yhm9C2liPoW+NlCsOiBZvv6iYt7hDunARc4PRY=";
21 build-system = [ setuptools ];
23 nativeCheckInputs = [ pytestCheckHook ];
25 pythonImportsCheck = [ "lazy_loader" ];
28 description = "Populate library namespace without incurring immediate import costs";
29 homepage = "https://github.com/scientific-python/lazy_loader";
30 changelog = "https://github.com/scientific-python/lazy_loader/releases/tag/v${version}";
31 license = licenses.bsd3;