Loading pkgs/development/python-modules/colcon-notification/default.nix 0 → 100644 +51 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchFromGitHub, colcon, notify2, pytestCheckHook, scspell, setuptools, writableTmpDirAsHomeHook, }: buildPythonPackage rec { pname = "colcon-notification"; version = "0.3.0"; pyproject = true; src = fetchFromGitHub { owner = "colcon"; repo = "colcon-notification"; tag = version; hash = "sha256-78LruNk3KlHFgwujSbnbkjC24IN6jGnfRN+qdjvZh+k="; }; build-system = [ setuptools ]; dependencies = [ colcon notify2 ]; nativeCheckInputs = [ pytestCheckHook scspell writableTmpDirAsHomeHook ]; pythonImportsCheck = [ "colcon_notification" ]; disabledTestPaths = [ # Linting/formatting tests are not relevant and would require extra dependencies "test/test_flake8.py" ]; meta = { description = "Extension for colcon-core to provide status notifications"; homepage = "https://github.com/colcon/colcon-notification"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ guelakais ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -2667,6 +2667,8 @@ self: super: with self; { colcon-defaults = callPackage ../development/python-modules/colcon-defaults { }; colcon-notification = callPackage ../development/python-modules/colcon-notification { }; collections-extended = callPackage ../development/python-modules/collections-extended { }; collidoscope = callPackage ../development/python-modules/collidoscope { }; Loading Loading
pkgs/development/python-modules/colcon-notification/default.nix 0 → 100644 +51 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchFromGitHub, colcon, notify2, pytestCheckHook, scspell, setuptools, writableTmpDirAsHomeHook, }: buildPythonPackage rec { pname = "colcon-notification"; version = "0.3.0"; pyproject = true; src = fetchFromGitHub { owner = "colcon"; repo = "colcon-notification"; tag = version; hash = "sha256-78LruNk3KlHFgwujSbnbkjC24IN6jGnfRN+qdjvZh+k="; }; build-system = [ setuptools ]; dependencies = [ colcon notify2 ]; nativeCheckInputs = [ pytestCheckHook scspell writableTmpDirAsHomeHook ]; pythonImportsCheck = [ "colcon_notification" ]; disabledTestPaths = [ # Linting/formatting tests are not relevant and would require extra dependencies "test/test_flake8.py" ]; meta = { description = "Extension for colcon-core to provide status notifications"; homepage = "https://github.com/colcon/colcon-notification"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ guelakais ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -2667,6 +2667,8 @@ self: super: with self; { colcon-defaults = callPackage ../development/python-modules/colcon-defaults { }; colcon-notification = callPackage ../development/python-modules/colcon-notification { }; collections-extended = callPackage ../development/python-modules/collections-extended { }; collidoscope = callPackage ../development/python-modules/collidoscope { }; Loading