at master 600 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 setuptools, 6}: 7 8buildPythonPackage rec { 9 pname = "rtb-data"; 10 version = "1.0.1"; 11 pyproject = true; 12 13 src = fetchPypi { 14 inherit pname version; 15 hash = "sha256-xRKS3c31li5ZRWw6WrYqTVQKXqW91ONbKWP57Dglzx0="; 16 }; 17 18 nativeBuildInputs = [ setuptools ]; 19 20 pythonImportsCheck = [ "rtbdata" ]; 21 22 meta = with lib; { 23 description = "Data files for the Robotics Toolbox for Python"; 24 homepage = "https://pypi.org/project/rtb-data/"; 25 license = licenses.mit; 26 maintainers = with maintainers; [ 27 djacu 28 a-camarillo 29 ]; 30 }; 31}