mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
python3Packages.catkin-pkg: init at 0.5.2
This commit is contained in:
parent
ac694ae628
commit
3589873e86
45
pkgs/development/python-modules/catkin-pkg/default.nix
Normal file
45
pkgs/development/python-modules/catkin-pkg/default.nix
Normal file
@ -0,0 +1,45 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
docutils,
|
||||
pyparsing,
|
||||
python-dateutil,
|
||||
setuptools,
|
||||
pytestCheckHook,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "catkin-pkg";
|
||||
version = "0.5.2";
|
||||
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ros-infrastructure";
|
||||
repo = "catkin_pkg";
|
||||
rev = version;
|
||||
hash = "sha256-DjaPpLDsLpYOZukf5tYe6ZetSNTe/DJ2lS9BUsehZ8k=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ setuptools ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
docutils
|
||||
pyparsing
|
||||
python-dateutil
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "catkin_pkg" ];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
disabledTestPaths = [ "test/test_flake8.py" ];
|
||||
|
||||
meta = {
|
||||
description = "Library for retrieving information about catkin packages.";
|
||||
homepage = "http://wiki.ros.org/catkin_pkg";
|
||||
license = lib.licenses.bsd3;
|
||||
maintainers = with lib.maintainers; [ jnsgruk ];
|
||||
};
|
||||
}
|
@ -1932,6 +1932,8 @@ self: super: with self; {
|
||||
};
|
||||
};
|
||||
|
||||
catkin-pkg = callPackage ../development/python-modules/catkin-pkg { };
|
||||
|
||||
catppuccin = callPackage ../development/python-modules/catppuccin { };
|
||||
|
||||
cattrs = callPackage ../development/python-modules/cattrs { };
|
||||
|
Loading…
Reference in New Issue
Block a user