{ 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 ]; }; }