python312Packages.remctl: init at 3.18
This commit is contained in:
parent
b34590bec5
commit
100bad6ad3
21
pkgs/development/python-modules/remctl/default.nix
Normal file
21
pkgs/development/python-modules/remctl/default.nix
Normal 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 ];
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user