{ lib, buildPythonPackage, fetchFromGitHub, setuptools, wheel, }: buildPythonPackage rec { pname = "buildbot-profiler"; version = "1.2.2"; pyproject = true; src = fetchFromGitHub { owner = "tardyp"; repo = "buildbot_profiler"; rev = "v${version}"; hash = "sha256-r56Cze0v3gKWKJwRy0BUYz5z8d0g3jerCIu3KreNxUc="; }; build-system = [ setuptools wheel ]; pythonImportsCheck = [ "buildbot_profiler" ]; meta = { description = ""; homepage = "https://github.com/tardyp/buildbot_profiler"; license = lib.licenses.unfree; # FIXME: nix-init did not find a license maintainers = with lib.maintainers; [ raitobezarius ]; }; }