f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
31 lines
600 B
Nix
31 lines
600 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "rtb-data";
|
|
version = "1.0.1";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-xRKS3c31li5ZRWw6WrYqTVQKXqW91ONbKWP57Dglzx0=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
pythonImportsCheck = [ "rtbdata" ];
|
|
|
|
meta = with lib; {
|
|
description = "Data files for the Robotics Toolbox for Python";
|
|
homepage = "https://pypi.org/project/rtb-data/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
djacu
|
|
a-camarillo
|
|
];
|
|
};
|
|
}
|