Merge pull request #321908 from djacu/init-spatialmath-python-python

python3Packages.spatialmath-python: init at 1.1.10
This commit is contained in:
tomberek 2024-07-24 23:14:46 -04:00 committed by GitHub
commit 19857268a6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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 { };