python312Packages.remctl: init at 3.18

This commit is contained in:
Elliot Cameron 2024-10-18 15:47:39 -04:00
parent b34590bec5
commit 100bad6ad3
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{
lib,
buildPythonPackage,
pythonOlder,
remctl-c, # remctl from pkgs, not from pythonPackages
typing,
}:
buildPythonPackage {
inherit (remctl-c)
meta
pname
src
version
;
setSourceRoot = "sourceRoot=$(echo */python)";
buildInputs = [ remctl-c ];
propagatedBuildInputs = lib.optionals (pythonOlder "3.5") [ typing ];
}

View File

@ -13552,6 +13552,10 @@ self: super: with self; {
remarshal = callPackage ../development/python-modules/remarshal { };
remctl = callPackage ../development/python-modules/remctl {
remctl-c = pkgs.remctl;
};
remi = callPackage ../development/python-modules/remi { };
remote-pdb = callPackage ../development/python-modules/remote-pdb { };