2019-12-09 05:16:46 +00:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, python3Packages, pythonPackages }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-eloquent-ament-package";
|
2019-12-13 20:20:25 +00:00
|
|
|
version = "0.8.8-r1";
|
2019-12-09 05:16:46 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-12-13 20:20:25 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ament_package-release/archive/release/eloquent/ament_package/0.8.8-1.tar.gz";
|
|
|
|
name = "0.8.8-1.tar.gz";
|
|
|
|
sha256 = "15d7727a71a534342a8881486050f01ac9f3f775a30dbe8cddc9a491570045f4";
|
2019-12-09 05:16:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
|
|
|
checkInputs = [ python3Packages.flake8 pythonPackages.pytest ];
|
|
|
|
propagatedBuildInputs = [ python3Packages.setuptools ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''The parser for the manifest files in the ament buildsystem.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|