Skip to content

Commit

Permalink
rclone-python: init at 0.1.12 (#288952)
Browse files Browse the repository at this point in the history
  • Loading branch information
FliegendeWurst authored Dec 15, 2024
2 parents 41a204f + 09fa1c4 commit df586b9
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
35 changes: 35 additions & 0 deletions pkgs/development/python-modules/rclone-python/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
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 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit df586b9

Please sign in to comment.