1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00

colcon: remove not Python 2 assertion

This commit is contained in:
Ben Wolsieffer 2023-04-02 12:01:45 -04:00
parent 7c1196ccf1
commit 194b4a68ba
15 changed files with 16 additions and 42 deletions

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, isPy27, colcon-core, colcon-library-path
{ lib, buildPythonPackage, fetchPypi, colcon-core, colcon-library-path
, colcon-test-result, cmake }:
buildPythonPackage rec {
@ -24,8 +24,6 @@ buildPythonPackage rec {
# Requires unpackaged dependencies
doCheck = false;
disabled = isPy27;
meta = with lib; {
description = "An extension for colcon-core to support CMake projects.";
homepage = "https://colcon.readthedocs.io";

View file

@ -1,5 +1,5 @@
{ lib, buildPythonApplication, buildPythonPackage, makeWrapper, fetchPypi
, isPy27, python, distlib, empy, pytest, pytest-cov, pytest-repeat
, python, distlib, empy, pytest, pytest-cov, pytest-repeat
, pytest-rerunfailures, setuptools, pytestCheckHook, flake8, flake8-blind-except
, flake8-docstrings, flake8-import-order, pep8-naming, pylint
}:

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, isPy27, colcon-core, pyyaml }:
{ lib, buildPythonPackage, fetchPypi, colcon-core, pyyaml }:
buildPythonPackage rec {
pname = "colcon-defaults";
@ -17,8 +17,6 @@ buildPythonPackage rec {
# Requires unpackaged dependencies
doCheck = false;
disabled = isPy27;
meta = with lib; {
description = "An extension for colcon-core to provide custom default values for the command line arguments from a configuration file.";
homepage = "https://colcon.readthedocs.io/en/released/user/configuration.html#defaults-yaml";

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, isPy27, colcon-core }:
{ lib, buildPythonPackage, fetchPypi, colcon-core }:
buildPythonPackage rec {
pname = "colcon-library-path";
@ -14,8 +14,6 @@ buildPythonPackage rec {
# Requires unpackaged dependencies
doCheck = false;
disabled = isPy27;
meta = with lib; {
description = "An extension for colcon-core to set an environment variable to find shared libraries at runtime.";
homepage = "https://colcon.readthedocs.io";

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, isPy27, colcon-core, pyyaml }:
{ lib, buildPythonPackage, fetchPypi, colcon-core, pyyaml }:
buildPythonPackage rec {
pname = "colcon-metadata";
@ -17,8 +17,6 @@ buildPythonPackage rec {
# Requires unpackaged dependencies
doCheck = false;
disabled = isPy27;
meta = with lib; {
description = "An extension for colcon-core to fetch and manage package metadata from repositories.";
homepage = "https://colcon.readthedocs.io";

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, isPy27, colcon-core, notify2 }:
{ lib, buildPythonPackage, fetchPypi, colcon-core, notify2 }:
buildPythonPackage rec {
pname = "colcon-notification";
@ -13,8 +13,6 @@ buildPythonPackage rec {
doCheck = false;
disabled = isPy27;
meta = with lib; {
description = "An extension for colcon-core to provide status notifications.";
homepage = "https://colcon.readthedocs.io";

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, isPy27, colcon-core }:
{ lib, buildPythonPackage, fetchPypi, colcon-core }:
buildPythonPackage rec {
pname = "colcon-output";
@ -13,8 +13,6 @@ buildPythonPackage rec {
doCheck = false;
disabled = isPy27;
meta = with lib; {
description = "An extension for colcon-core to customize the output in various ways.";
homepage = "https://colcon.readthedocs.io";

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, isPy27, colcon-core }:
{ lib, buildPythonPackage, fetchPypi, colcon-core }:
buildPythonPackage rec {
pname = "colcon-package-information";

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, isPy27, colcon-core }:
{ lib, buildPythonPackage, fetchPypi, colcon-core }:
buildPythonPackage rec {
pname = "colcon-package-selection";
@ -14,8 +14,6 @@ buildPythonPackage rec {
# Requires unpackaged dependencies
doCheck = false;
disabled = isPy27;
meta = with lib; {
description = "An extension for colcon-core to select a subset of packages for processing.";
homepage = "https://colcon.readthedocs.io";

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, isPy27, colcon-core }:
{ lib, buildPythonPackage, fetchPypi, colcon-core }:
buildPythonPackage rec {
pname = "colcon-parallel-executor";
@ -13,8 +13,6 @@ buildPythonPackage rec {
doCheck = false;
disabled = isPy27;
meta = with lib; {
description = "An extension for colcon-core to process packages in parallel.";
homepage = "https://colcon.readthedocs.io";

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, isPy27, colcon-core }:
{ lib, buildPythonPackage, fetchPypi, colcon-core }:
buildPythonPackage rec {
pname = "colcon-pkg-config";
@ -14,8 +14,6 @@ buildPythonPackage rec {
# Requires unpackaged dependencies
doCheck = false;
disabled = isPy27;
meta = with lib; {
description = "An extension for colcon-core to set an environment variable to find pkg-config files.";
homepage = "https://colcon.readthedocs.io";

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, isPy27, colcon-core, setuptools }:
{ lib, buildPythonPackage, fetchPypi, colcon-core, setuptools }:
buildPythonPackage rec {
pname = "colcon-python-setup-py";
@ -14,8 +14,6 @@ buildPythonPackage rec {
# Requires unpackaged dependencies
doCheck = false;
disabled = isPy27;
meta = with lib; {
description = ''
An extension for colcon-core to identify packages with a setup.py file by

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, isPy27, colcon-core }:
{ lib, buildPythonPackage, fetchPypi, colcon-core }:
buildPythonPackage rec {
pname = "colcon-recursive-crawl";
@ -14,8 +14,6 @@ buildPythonPackage rec {
# Requires unpackaged dependencies
doCheck = false;
disabled = isPy27;
meta = with lib; {
description = "An extension for colcon-core to recursively crawl for packages.";
homepage = "https://colcon.readthedocs.io";

View file

@ -1,5 +1,5 @@
{ lib, buildPythonPackage, fetchPypi, isPy27, catkin-pkg, colcon-cmake
, colcon-core, colcon-pkg-config, colcon-python-setup-py
{ lib, buildPythonPackage, fetchPypi, catkin-pkg, colcon-cmake, colcon-core
, colcon-pkg-config, colcon-python-setup-py
, colcon-recursive-crawl }:
buildPythonPackage rec {
@ -23,8 +23,6 @@ buildPythonPackage rec {
# Requires unpackaged dependencies
doCheck = false;
disabled = isPy27;
meta = with lib; {
description = "An extension for colcon-core to support ROS packages.";
homepage = "https://colcon.readthedocs.io";

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, isPy27, colcon-core }:
{ lib, buildPythonPackage, fetchPypi, colcon-core }:
buildPythonPackage rec {
pname = "colcon-test-result";
@ -14,8 +14,6 @@ buildPythonPackage rec {
# Requires unpackaged dependencies
doCheck = false;
disabled = isPy27;
meta = with lib; {
description = "An extension for colcon-core to provide information about the test results.";
homepage = "https://colcon.readthedocs.io";