python3Packages.spatialmath-python: init at 1.1.10

Co-authored-by: Anthony Camarillo <anthony.camarillo.96@gmail.com>
This commit is contained in:
Daniel Baker 2024-06-22 21:29:41 -07:00
parent cadf473b34
commit e6aa19a9ce
2 changed files with 78 additions and 0 deletions

View File

@ -0,0 +1,76 @@
{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
oldest-supported-numpy,
setuptools,
ansitable,
matplotlib,
numpy,
scipy,
typing-extensions,
coverage,
flake8,
pytest,
pytest-timeout,
pytest-xvfb,
sympy,
pytestCheckHook,
pythonRelaxDepsHook,
}:
buildPythonPackage rec {
pname = "spatialmath-python";
version = "1.1.10";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "spatialmath_python";
inherit version;
hash = "sha256-7h29RHCrxdexpabtxMQx/7RahQmCDGHhdJ1WETvtfYg=";
};
nativeBuildInputs = [
oldest-supported-numpy
setuptools
pythonRelaxDepsHook
];
pythonRemoveDeps = [ "pre-commit" ];
propagatedBuildInputs = [
ansitable
matplotlib
numpy
scipy
typing-extensions
];
passthru.optional-dependencies = {
dev = [
coverage
flake8
pytest
pytest-timeout
pytest-xvfb
sympy
];
};
pythonImportsCheck = [ "spatialmath" ];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Provides spatial maths capability for Python";
homepage = "https://pypi.org/project/spatialmath-python/";
license = licenses.mit;
maintainers = with maintainers; [
djacu
a-camarillo
];
};
}

View File

@ -14538,6 +14538,8 @@ self: super: with self; {
spatial-image = callPackage ../development/python-modules/spatial-image { };
spatialmath-python = callPackage ../development/python-modules/spatialmath-python { };
spdx = callPackage ../development/python-modules/spdx { };
spdx-lookup = callPackage ../development/python-modules/spdx-lookup { };