1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/melodic/ros-pytest/default.nix
2019-04-06 22:15:06 -04:00

24 lines
742 B
Nix

# 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 ];
checkInputs = [ rostest ];
propagatedBuildInputs = [ pythonPackages.pytest rospy ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''The ros_pytest package'';
#license = lib.licenses.MIT;
};
}