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/melodic/ros-pytest/default.nix

26 lines
754 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2021 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, pythonPackages, rospy, rostest }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-ros-pytest";
version = "0.2.0";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/machinekoder/ros_pytest-release/archive/release/melodic/ros_pytest/0.2.0-0.tar.gz";
name = "0.2.0-0.tar.gz";
sha256 = "ba602e2fda979ab6f3097bfdad4c9cc589a7f0781f784cd46a1462de3636dc84";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
2019-03-21 00:14:59 -04:00
checkInputs = [ rostest ];
propagatedBuildInputs = [ pythonPackages.pytest rospy ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''The ros_pytest package'';
license = with lib.licenses; [ mit ];
2019-03-21 00:14:59 -04:00
};
}