mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-19 22:30:23 +00:00
python312Packages.filesplit, python312Packages.pysidesix-frameless-window, python312Packages.pyside6-fluent-widgets: drop
This was originally added for video-subtitle-extractor, but the PR related to video-subtitle-extractor has been closed, and it is very difficult to continue maintaining these packages.
This commit is contained in:
@@ -1,30 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "filesplit";
|
||||
version = "4.1.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ram-jayapalan";
|
||||
repo = "filesplit";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-QttXCK/IalnOVilWQaE0FYhFglQ1nXDLUX3nOFI5Vrc=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
pythonImportsCheck = [ "filesplit" ];
|
||||
|
||||
meta = {
|
||||
description = "Split file into multiple chunks based on the given size";
|
||||
homepage = "https://github.com/ram-jayapalan/filesplit";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ ];
|
||||
};
|
||||
}
|
||||
@@ -1,42 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
setuptools,
|
||||
pyside6,
|
||||
pysidesix-frameless-window,
|
||||
darkdetect,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyside6-fluent-widgets";
|
||||
version = "1.8.4";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "pyside6_fluent_widgets";
|
||||
inherit version;
|
||||
hash = "sha256-DtyldvNqdjca0Os2au1WSqyH9gLkQt8ryNrunZuUEus=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
pyside6
|
||||
pysidesix-frameless-window
|
||||
darkdetect
|
||||
];
|
||||
|
||||
# no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "qfluentwidgets" ];
|
||||
|
||||
meta = {
|
||||
description = "Fluent design widgets library based on PySide6";
|
||||
homepage = "https://github.com/zhiyiYo/PyQt-Fluent-Widgets";
|
||||
platforms = lib.platforms.linux;
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = with lib.maintainers; [ ];
|
||||
};
|
||||
}
|
||||
@@ -1,36 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
setuptools,
|
||||
pyside6,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pysidesix-frameless-window";
|
||||
version = "0.7.3";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "pysidesix_frameless_window";
|
||||
inherit version;
|
||||
hash = "sha256-6a9xyTQOYIo0WWuLXVrOvYGAdoFXJNbR21q4FLyDKEQ=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [ pyside6 ];
|
||||
|
||||
# no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "qframelesswindow" ];
|
||||
|
||||
meta = {
|
||||
description = "Frameless window based on PySide6";
|
||||
homepage = "https://github.com/zhiyiYo/PyQt-Frameless-Window";
|
||||
platforms = lib.platforms.linux;
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = with lib.maintainers; [ ];
|
||||
};
|
||||
}
|
||||
@@ -258,6 +258,7 @@ mapAliases ({
|
||||
fenics = throw "fenics has been removed, use fenics-dolfinx instead"; # added 2025-08-07
|
||||
filebrowser_safe = filebrowser-safe; # added 2024-01-03
|
||||
filemagic = throw "inactive since 2014, so use python-magic instead"; # added 2022-11-19
|
||||
filesplit = throw "filesplit has been removed, since it is unmaintained"; # added 2025-08-20
|
||||
flaskbabel = flask-babel; # added 2023-01-19
|
||||
flask-babelex = throw "flask-babelex package has been removed, use flask-babel instead"; # added 2024-10-07
|
||||
flask_assets = flask-assets; # added 2023-08-23
|
||||
@@ -626,6 +627,8 @@ mapAliases ({
|
||||
py-scrypt = scrypt; # added 2025-08-07
|
||||
pysha3 = throw "pysha3 has been removed, use safe-pysha3 instead"; # added 2023-05-20
|
||||
pysimplegui = throw "pysimplegui update to v5 broke the package, it now needs a license key to decrypt the source code"; # added 2024-09-16
|
||||
pyside6-fluent-widgets = throw "pyside6-fluent-widgets has been removed, since it is unmaintained"; # added 2025-08-20
|
||||
pysidesix-frameless-window = throw "pysidesix-frameless-window has been removed, since it is unmaintained"; # added 2025-08-20
|
||||
pysmart-smartx = pysmart; # added 2021-10-22
|
||||
pySmartDL = pysmartdl; # added 2023-10-11
|
||||
pysmi-lextudio = pysmi; # added 2024-07-18
|
||||
|
||||
@@ -5125,8 +5125,6 @@ self: super: with self; {
|
||||
|
||||
files-to-prompt = callPackage ../development/python-modules/files-to-prompt { };
|
||||
|
||||
filesplit = callPackage ../development/python-modules/filesplit { };
|
||||
|
||||
filetype = callPackage ../development/python-modules/filetype { };
|
||||
|
||||
filterpy = callPackage ../development/python-modules/filterpy { };
|
||||
@@ -13982,14 +13980,8 @@ self: super: with self; {
|
||||
callPackage ../development/python-modules/pyside6 { inherit (pkgs) cmake ninja; }
|
||||
);
|
||||
|
||||
pyside6-fluent-widgets = callPackage ../development/python-modules/pyside6-fluent-widgets { };
|
||||
|
||||
pyside6-qtads = callPackage ../development/python-modules/pyside6-qtads { };
|
||||
|
||||
pysidesix-frameless-window =
|
||||
callPackage ../development/python-modules/pysidesix-frameless-window
|
||||
{ };
|
||||
|
||||
pysigma = callPackage ../development/python-modules/pysigma { };
|
||||
|
||||
pysigma-backend-elasticsearch =
|
||||
|
||||
Reference in New Issue
Block a user