diff --git a/pkgs/development/python-modules/fvs/default.nix b/pkgs/development/python-modules/fvs/default.nix deleted file mode 100644 index 23ca56882968..000000000000 --- a/pkgs/development/python-modules/fvs/default.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ - lib, - buildPythonPackage, - fetchPypi, - orjson, -}: - -buildPythonPackage rec { - pname = "fvs"; - version = "0.3.4"; - format = "setuptools"; - - src = fetchPypi { - inherit version; - pname = "FVS"; - extension = "tar.gz"; - hash = "sha256-yYd0HzdwbqB9kexJjBRRYmdsoWtZtcjCNRz0ZJVM5CI="; - }; - - propagatedBuildInputs = [ orjson ]; - - # no tests in src - doCheck = false; - - pythonImportsCheck = [ "fvs" ]; - - meta = { - description = "File Versioning System with hash comparison and data storage to create unlinked states that can be deleted"; - mainProgram = "fvs"; - homepage = "https://github.com/mirkobrombin/FVS"; - license = lib.licenses.mit; - maintainers = [ ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index 070b98284fbf..1fbe4ce5f392 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -229,6 +229,7 @@ mapAliases { flufl_i18n = throw "'flufl_i18n' has been renamed to/replaced by 'flufl-i18n'"; # Converted to throw 2025-10-29 flufl_lock = throw "'flufl_lock' has been renamed to/replaced by 'flufl-lock'"; # Converted to throw 2025-10-29 FormEncode = throw "'FormEncode' has been renamed to/replaced by 'formencode'"; # Converted to throw 2025-10-29 + fvs = throw "'fvs' has been removed due to being unused"; # Added 2026-05-23 garminconnect-ha = throw "'garminconnect-ha' has been renamed to/replaced by 'garminconnect'"; # Converted to throw 2025-10-29 GeoIP = throw "'GeoIP' has been renamed to/replaced by 'geoip'"; # Converted to throw 2025-10-29 github3_py = throw "'github3_py' has been renamed to/replaced by 'github3-py'"; # Converted to throw 2025-10-29 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 067fbf6bdaad..946a51e23ffd 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6008,8 +6008,6 @@ self: super: with self; { fvcore = callPackage ../development/python-modules/fvcore { }; - fvs = callPackage ../development/python-modules/fvs { }; - fx2 = callPackage ../development/python-modules/fx2 { }; fxrays = callPackage ../development/python-modules/fxrays { };