2023-04-02 12:01:45 -04:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, colcon-core, setuptools }:
|
2019-09-05 22:43:33 -04:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "colcon-python-setup-py";
|
2024-10-11 12:43:04 +00:00
|
|
|
version = "0.2.9";
|
2019-09-05 22:43:33 -04:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2024-10-11 12:43:04 +00:00
|
|
|
hash = "sha256-TYurLgW6M04p7uNxX73kkCgTQu2OAA4lITDlxRkVODo=";
|
2019-09-05 22:43:33 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|