1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/foxy/osrf-pycommon/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

23 lines
726 B
Nix

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, python3Packages }:
buildRosPackage {
pname = "ros-foxy-osrf-pycommon";
version = "0.1.11-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/osrf_pycommon-release/archive/release/foxy/osrf_pycommon/0.1.11-1.tar.gz";
name = "0.1.11-1.tar.gz";
sha256 = "62adc3d4029feb8f2baf55d7375d25f444e38e63a9c24795c78643e66d0d2b92";
};
buildType = "ament_python";
propagatedBuildInputs = [ python3Packages.mock ];
meta = {
description = ''Commonly needed Python modules, used by Python software developed at OSRF.'';
license = with lib.licenses; [ asl20 ];
};
}