2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-11-07 19:19:39 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, python3Packages }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-osrf-pycommon";
|
2019-11-07 17:17:35 -05:00
|
|
|
version = "0.1.9-r1";
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-11-07 17:17:35 -05:00
|
|
|
url = "https://github.com/ros2-gbp/osrf_pycommon-release/archive/release/dashing/osrf_pycommon/0.1.9-1.tar.gz";
|
|
|
|
name = "0.1.9-1.tar.gz";
|
|
|
|
sha256 = "cfd3e9851ce43c25785bea5b994dddd350307f4456d763fd8648dddc480b2241";
|
2019-09-04 17:11:04 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2019-11-07 19:19:39 -05:00
|
|
|
propagatedBuildInputs = [ python3Packages.mock ];
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Commonly needed Python modules, used by Python software developed at OSRF.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|