2019-12-09 05:16:46 +00:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-copyright, ament-cmake-core, ament-cmake-lint-cmake, ament-cmake-test, ament-virtualenv }:
|
2019-12-09 05:16:46 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-dashing-ament-cmake-virtualenv";
|
2019-12-09 23:36:28 -05:00
|
|
|
version = "0.0.4-r1";
|
2019-12-09 05:16:46 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-12-09 23:36:28 -05:00
|
|
|
url = "https://github.com/esol-community/ament_virtualenv-release/archive/release/dashing/ament_cmake_virtualenv/0.0.4-1.tar.gz";
|
|
|
|
name = "0.0.4-1.tar.gz";
|
|
|
|
sha256 = "a3a196f666f855847864da400ccadf73434aaaf514f788b7e75174e6bdeb9815";
|
2019-12-09 05:16:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2019-12-09 23:36:28 -05:00
|
|
|
checkInputs = [ ament-cmake-copyright ament-cmake-lint-cmake ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-core ament-cmake-test ament-virtualenv ];
|
2019-12-09 05:16:46 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Bundle python requirements in a ament package via virtualenv.'';
|
|
|
|
license = with lib.licenses; [ gpl1 ];
|
|
|
|
};
|
|
|
|
}
|