17 buildPythonPackage rec {
22 disabled = pythonOlder "3.6";
24 src = fetchFromGitHub {
27 rev = "refs/tags/v${version}";
28 hash = "sha256-ygoJqyTscfuZVDGVbrZobZFvlcuF4HavTU65tmhyU+w=";
36 optional-dependencies = {
54 disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
55 # fail due to sandbox environment
60 pythonImportsCheck = [ "ubelt" ];
62 __darwinAllowLocalNetworking = true;
65 description = "Python utility library with a stdlib like feel and extra batteries. Paths, Progress, Dicts, Downloads, Caching, Hashing: ubelt makes it easy";
66 homepage = "https://github.com/Erotemic/ubelt";
67 changelog = "https://github.com/Erotemic/ubelt/blob/${src.rev}/CHANGELOG.md";
68 license = licenses.asl20;
69 maintainers = with maintainers; [ natsukium ];