mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
colcon: update extensions
This commit is contained in:
parent
bab273b012
commit
c874882ef6
5 changed files with 30 additions and 14 deletions
|
@ -3,11 +3,11 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "colcon-cmake";
|
||||
version = "0.2.26";
|
||||
version = "0.2.27";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "17rl4jsxc43kjri3kdsyqbl73xchj6zj3j4m73yfasvn2bl7y8js";
|
||||
hash = "sha256-9XlFUMp/n/tFVd5FQiflZqC+tciIHXZQnbMze5k3DyY=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
{ lib, buildPythonApplication, buildPythonPackage, makeWrapper, fetchPypi
|
||||
, isPy27, python, distlib, empy, pytest, pytest-cov, pytest-repeat
|
||||
, pytest-rerunfailures, pytest-runner }:
|
||||
, pytest-rerunfailures, setuptools, pytestCheckHook, flake8, flake8-blind-except
|
||||
, flake8-docstrings, flake8-import-order, pep8-naming, pylint
|
||||
}:
|
||||
|
||||
let
|
||||
withExtensions = extensions: buildPythonApplication {
|
||||
|
@ -27,11 +29,11 @@ let
|
|||
|
||||
package = buildPythonPackage rec {
|
||||
pname = "colcon-core";
|
||||
version = "0.6.1";
|
||||
version = "0.10.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1sfvkq5ppyqw8ywibnhmkkbdai9yvw6vph5g6b1zqig75i5m657w";
|
||||
hash = "sha256-VOlHWEUdLYgdrF5ILDdE9dJzP71FmBwkwIQOuz56SqM=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
@ -41,14 +43,28 @@ let
|
|||
pytest-cov
|
||||
pytest-repeat
|
||||
pytest-rerunfailures
|
||||
pytest-runner
|
||||
setuptools
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
flake8
|
||||
flake8-blind-except
|
||||
# flake8-builtins
|
||||
# flake8-class-newline
|
||||
# flake8-comprehensions
|
||||
# flake8-deprecated
|
||||
flake8-docstrings
|
||||
flake8-import-order
|
||||
# flake8-quotes
|
||||
pep8-naming
|
||||
pylint
|
||||
# scspell3k
|
||||
];
|
||||
|
||||
# Requires unpackaged dependencies
|
||||
doCheck = false;
|
||||
|
||||
disabled = isPy27;
|
||||
|
||||
passthru = {
|
||||
inherit withExtensions;
|
||||
};
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "colcon-notification";
|
||||
version = "0.2.13";
|
||||
version = "0.2.14";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-aq4f/nOulWvLNuMwgizSMKKojJGBsxcKr9GkRmOOabM=";
|
||||
hash = "sha256-aq4f/nOulWvLNuMwgizSMKKojJGBsxcKr8GkRmOOabM=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ colcon-core notify2 ];
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "colcon-python-setup-py";
|
||||
version = "0.2.7";
|
||||
version = "0.2.8";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0ba1vq5sm2rbddasl85qx5mi7chcz8s1drnr0rvpj0a3bh497hpf";
|
||||
hash = "sha256-g/cZ8je7hSVE3hJGNdQ3agrYYcFMdSgw+9//vTjNlao=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ colcon-core setuptools ];
|
||||
|
|
|
@ -4,11 +4,11 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "colcon-ros";
|
||||
version = "0.3.21";
|
||||
version = "0.3.23";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "18zansl30s3ibv12dbskr2phf63y52m8kmfw3rpa060srr5zmk4x";
|
||||
hash = "sha256-nXjNB1otTGTxwmbVFEyxWcYaoWHR9w6v2hVBw0+kRl4=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue