1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/melodic/ros-pytest/default.nix

25 lines
742 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, rostest, catkin, pythonPackages, rospy }:
buildRosPackage {
pname = "ros-melodic-ros-pytest";
version = "0.1.2-r2";
src = fetchurl {
url = https://github.com/machinekoder/ros_pytest-release/archive/release/melodic/ros_pytest/0.1.2-2.tar.gz;
sha256 = "8204f445e165a048869660415c84fa1f478c1d1ecf8dabd79dd9a1187b95048e";
};
buildInputs = [ pythonPackages.pytest rospy ];
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 = lib.licenses.MIT;
};
}