2019-12-09 05:16:46 +00:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-12-09 05:16:46 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-03-07 13:15:26 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, python3Packages, pythonPackages }:
|
2019-12-09 05:16:46 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-dashing-ament-virtualenv";
|
2020-03-07 13:15:26 -05:00
|
|
|
version = "0.0.5-r5";
|
2019-12-09 05:16:46 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-03-07 13:15:26 -05:00
|
|
|
url = "https://github.com/esol-community/ament_virtualenv-release/archive/release/dashing/ament_virtualenv/0.0.5-5.tar.gz";
|
|
|
|
name = "0.0.5-5.tar.gz";
|
|
|
|
sha256 = "207b5fd15d46bfbf8d09f2c6600da42670307235202dc44cedddc7a13f9e7f9e";
|
2019-12-09 05:16:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2020-03-07 13:15:26 -05:00
|
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.packaging pythonPackages.pytest pythonPackages.virtualenv ];
|
|
|
|
propagatedBuildInputs = [ python3Packages.packaging pythonPackages.virtualenv ];
|
|
|
|
nativeBuildInputs = [ python3Packages.packaging pythonPackages.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 ];
|
|
|
|
};
|
|
|
|
}
|