mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
24 lines
805 B
Nix
24 lines
805 B
Nix
![]() |
|
||
|
# Copyright 2020 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, ament-xmllint, pythonPackages }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-foxy-rpyutils";
|
||
|
version = "0.1.0-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/rpyutils-release/archive/release/foxy/rpyutils/0.1.0-1.tar.gz";
|
||
|
name = "0.1.0-1.tar.gz";
|
||
|
sha256 = "31e4d7c68948f7cefe9dfb3652108a5f5542458bdd33d8e704cfc907f431480c";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_python";
|
||
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 ament-xmllint pythonPackages.pytest ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Package containing various utility types and functions for Python'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|