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/crystal/osrf-pycommon/default.nix

21 lines
598 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, }:
buildRosPackage {
pname = "ros-crystal-osrf-pycommon";
version = "0.1.6";
src = fetchurl {
url = https://github.com/ros2-gbp/osrf_pycommon-release/archive/release/crystal/osrf_pycommon/0.1.6-0.tar.gz;
sha256 = "0b57f393c62abbe990c23c9b55272fc0e97d402ef68d2e9f7fc3c3a66f4c9d97";
};
meta = {
description = ''Commonly needed Python modules, used by Python software developed at OSRF.'';
license = with lib.licenses; [ asl20 ];
};
}