1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 13:40:32 +03:00
nix-ros-overlay/pkgs/colcon/python-setup-py.nix
2024-10-11 12:26:21 -04:00

26 lines
725 B
Nix

{ lib, buildPythonPackage, fetchPypi, colcon-core, setuptools }:
buildPythonPackage rec {
pname = "colcon-python-setup-py";
version = "0.2.9";
src = fetchPypi {
inherit pname version;
hash = "sha256-TYurLgW6M04p7uNxX73kkCgTQu2OAA4lITDlxRkVODo=";
};
propagatedBuildInputs = [ colcon-core setuptools ];
# Requires unpackaged dependencies
doCheck = false;
meta = with lib; {
description = ''
An extension for colcon-core to identify packages with a setup.py file by
introspecting the arguments to the setup() function call of setuptools.
'';
homepage = "https://colcon.readthedocs.io";
license = licenses.asl20;
maintainers = with maintainers; [ lopsided98 ];
};
}