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/dashing/ament-virtualenv/default.nix

24 lines
807 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-pep257, pythonPackages, ament-flake8, ament-copyright }:
buildRosPackage {
pname = "ros-dashing-ament-virtualenv";
version = "0.0.3-r1";
src = fetchurl {
url = "https://github.com/esol-community/ament_virtualenv-release/archive/release/dashing/ament_virtualenv/0.0.3-1.tar.gz";
name = "0.0.3-1.tar.gz";
sha256 = "b9a25cd1decc54ab252e83a6fdc07bff94615a92befb8edafa819bc0bcf072ae";
};
buildType = "ament_python";
checkInputs = [ pythonPackages.pytest ament-flake8 ament-copyright ament-pep257 ];
meta = {
description = ''Bundle python requirements in a ament package via virtualenv.'';
license = with lib.licenses; [ gpl1 ];
};
}