13 buildPythonPackage rec {
14 pname = "python-utils";
18 disabled = pythonOlder "3.8";
20 src = fetchFromGitHub {
23 rev = "refs/tags/v${version}";
24 hash = "sha256-ZmCT41VMz8BkIqF8Od5PqteyXToA4xASs0qCPD0cNc8=";
33 build-system = [ setuptools ];
35 dependencies = [ typing-extensions ];
37 optional-dependencies = {
44 ] ++ optional-dependencies.loguru;
46 pythonImportsCheck = [ "python_utils" ];
48 pytestFlagsArray = [ "_python_utils_tests" ];
52 "test_timeout_generator"
56 description = "Module with some convenient utilities";
57 homepage = "https://github.com/WoLpH/python-utils";
58 changelog = "https://github.com/wolph/python-utils/releases/tag/v${version}";
59 license = licenses.bsd3;