16 buildPythonPackage rec {
21 disabled = pythonOlder "3.6";
23 src = fetchFromGitHub {
26 rev = "refs/tags/v${version}";
27 hash = "sha256-pwqqt5Syag4cO6a93+7ZE3eI61yTZGc+NEu/Y0i1U0k=";
35 passthru.optional-dependencies = {
53 disabledTests = lib.optionals stdenv.isDarwin [
54 # fail due to sandbox environment
59 pythonImportsCheck = [ "ubelt" ];
61 __darwinAllowLocalNetworking = true;
64 description = "A Python utility library with a stdlib like feel and extra batteries. Paths, Progress, Dicts, Downloads, Caching, Hashing: ubelt makes it easy";
65 homepage = "https://github.com/Erotemic/ubelt";
66 changelog = "https://github.com/Erotemic/ubelt/blob/${src.rev}/CHANGELOG.md";
67 license = licenses.asl20;
68 maintainers = with maintainers; [ natsukium ];