Unverified Commit a589d733 authored by tomberek's avatar tomberek Committed by GitHub
Browse files

Merge pull request #321911 from djacu/init-rtb-data-python

python3Packages.rtb-data: init at 1.0.1
parents 47b4cd19 b9116dc0
Loading
Loading
Loading
Loading
+31 −0
Original line number Diff line number Diff line
{
  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
    ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -13762,6 +13762,8 @@ self: super: with self; {
  rtoml = callPackage ../development/python-modules/rtoml { };
  rtb-data = callPackage ../development/python-modules/rtb-data { };
  rtp = callPackage ../development/python-modules/rtp { };
  rtree = callPackage ../development/python-modules/rtree {