Commit 100bad6a authored by Elliot Cameron's avatar Elliot Cameron
Browse files

python312Packages.remctl: init at 3.18

parent b34590be
Loading
Loading
Loading
Loading
+21 −0
Original line number Diff line number Diff line
{
  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 ];
}
+4 −0
Original line number Diff line number Diff line
@@ -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 { };