Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python312Packages.colcon-ros-domain-id-coordinator: init at 0.2.1

GueLaKais db35a5cd 6f5e6833

+58
+54
pkgs/development/python-modules/colcon-ros-domain-id-coordinator/default.nix
···
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + colcon, 5 + fetchFromGitHub, 6 + pytestCheckHook, 7 + pytest-cov, 8 + pytest-repeat, 9 + pytest-rerunfailures, 10 + scspell, 11 + setuptools, 12 + writableTmpDirAsHomeHook, 13 + }: 14 + buildPythonPackage { 15 + pname = "colcon-ros-domain-id-coordinator"; 16 + version = "0.2.1"; 17 + pyproject = true; 18 + 19 + src = fetchFromGitHub { 20 + owner = "colcon"; 21 + repo = "colcon-ros-domain-id-coordinator"; 22 + tag = "0.2.1"; 23 + hash = "sha256-8DTpixa5ZGuSOpmwoeJgxLQI+17XheLxPWcJymE0GqM="; 24 + }; 25 + build-system = [ setuptools ]; 26 + 27 + dependencies = [ 28 + colcon 29 + ]; 30 + 31 + nativeCheckInputs = [ 32 + pytestCheckHook 33 + pytest-cov 34 + pytest-repeat 35 + pytest-rerunfailures 36 + scspell 37 + writableTmpDirAsHomeHook 38 + ]; 39 + 40 + disabledTestPaths = [ 41 + "test/test_flake8.py" 42 + ]; 43 + 44 + pythonImportsCheck = [ 45 + "colcon_ros_domain_id_coordinator" 46 + ]; 47 + 48 + meta = { 49 + description = "An extension for colcon-core to coordinate ROS_DOMAIN_ID values across multiple terminals"; 50 + homepage = "https://github.com/colcon/colcon-ros-domain-id-coordinator"; 51 + license = lib.licenses.asl20; 52 + maintainers = with lib.maintainers; [ guelakais ]; 53 + }; 54 + }
+4
pkgs/top-level/python-packages.nix
··· 2693 2694 colcon-parallel-executor = callPackage ../development/python-modules/colcon-parallel-executor { }; 2695 2696 collections-extended = callPackage ../development/python-modules/collections-extended { }; 2697 2698 collidoscope = callPackage ../development/python-modules/collidoscope { };
··· 2693 2694 colcon-parallel-executor = callPackage ../development/python-modules/colcon-parallel-executor { }; 2695 2696 + colcon-ros-domain-id-coordinator = 2697 + callPackage ../development/python-modules/colcon-ros-domain-id-coordinator 2698 + { }; 2699 + 2700 collections-extended = callPackage ../development/python-modules/collections-extended { }; 2701 2702 collidoscope = callPackage ../development/python-modules/collidoscope { };