Unverified Commit df586b92 authored by Arne Keller's avatar Arne Keller Committed by GitHub
Browse files

rclone-python: init at 0.1.12 (#288952)

parents 41a204fe 09fa1c43
Loading
Loading
Loading
Loading
+35 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  rich,
  rclone,
}:

buildPythonPackage rec {
  pname = "rclone-python";
  version = "0.1.12";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "kqHSHF4iVXTbQ4kIpCUi7/l+Rn8L/uvSAHyDcjqDSos=";
  };

  propagatedBuildInputs = [
    rclone
    rich
  ];

  # tests require working internet connection
  doCheck = false;

  pythonImportsCheck = [ "rclone_python" ];

  meta = {
    description = "Python wrapper for rclone";
    homepage = "https://github.com/Johannes11833/rclone_python";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ CaptainJawZ ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -13768,6 +13768,8 @@ self: super: with self; {
  rchitect = callPackage ../development/python-modules/rchitect { };
  rclone-python = callPackage ../development/python-modules/rclone-python { };
  rcssmin = callPackage ../development/python-modules/rcssmin { };
  rdflib = callPackage ../development/python-modules/rdflib { };