python312Packages.rtslib: rename to rtslib-fb

This commit is contained in:
Gaetan Lepage
2025-03-15 12:16:57 +01:00
parent e4ffd9c09c
commit 68c06a055a
5 changed files with 7 additions and 6 deletions
@@ -52,8 +52,8 @@ in
wantedBy = [ "multi-user.target" ];
serviceConfig = {
Type = "oneshot";
ExecStart = "${pkgs.python3.pkgs.rtslib}/bin/targetctl restore";
ExecStop = "${pkgs.python3.pkgs.rtslib}/bin/targetctl clear";
ExecStart = "${lib.getExe pkgs.python3Packages.rtslib-fb} restore";
ExecStop = "${lib.getExe pkgs.python3Packages.rtslib-fb} clear";
RemainAfterExit = "yes";
};
};
+1 -1
View File
@@ -27,7 +27,7 @@ python3.pkgs.buildPythonApplication rec {
propagatedBuildInputs = with python3.pkgs; [
configshell
rtslib
rtslib-fb
pygobject3
];
@@ -12,7 +12,7 @@
}:
buildPythonPackage rec {
pname = "rtslib";
pname = "rtslib-fb";
version = "2.2.2";
pyproject = true;
@@ -24,7 +24,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "open-iscsi";
repo = "${pname}-fb";
repo = "rtslib-fb";
tag = "v${version}";
hash = "sha256-FuXO/yGZBR+QRvB5s1tE77hjnisSfjjHSCPLvGJOYdM=";
};
+1
View File
@@ -647,6 +647,7 @@ mapAliases ({
ronin = throw "ronin has been removed because it was unmaintained since 2018"; # added 2024-08-21
ROPGadget = ropgadget; # added 2021-07-06
rotate-backups = throw "rotate-backups was removed in favor of the top-level rotate-backups"; # added 2021-07-01
rtslib = rtslib-fb; # added 2025-03-14
ruamel_base = ruamel-base; # added 2021-11-01
ruamel_yaml = ruamel-yaml; # added 2021-11-01
ruamel_yaml_clib = ruamel-yaml-clib; # added 2021-11-01
+1 -1
View File
@@ -14696,7 +14696,7 @@ self: super: with self; {
inherit (pkgs) libspatialindex;
};
rtslib = callPackage ../development/python-modules/rtslib { };
rtslib-fb = callPackage ../development/python-modules/rtslib-fb { };
rtsp-to-webrtc = callPackage ../development/python-modules/rtsp-to-webrtc { };