Unverified Commit c465daf0 authored by natsukium's avatar natsukium
Browse files

python312Packages.keyring_24: remove

keyring_24 has been removed, use keyring instead
parent c2924cef
Loading
Loading
Loading
Loading
+0 −81
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  buildPythonPackage,
  fetchPypi,
  pythonOlder,
  installShellFiles,
  setuptools,
  setuptools-scm,
  shtab,
  importlib-metadata,
  jaraco-classes,
  jaraco-context,
  jaraco-functools,
  jeepney,
  secretstorage,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "keyring_24";
  # nixpkgs-update: no auto update
  version = "24.3.1";
  pyproject = true;
  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit version;
    pname = "keyring";
    hash = "sha256-wzJ7b/r8DovvvbWXys20ko/+XBIS92RfGG5tmVeomNs=";
  };

  nativeBuildInputs = [
    installShellFiles
    shtab
  ];

  build-system = [
    setuptools
    setuptools-scm
  ];

  dependencies =
    [
      jaraco-classes
      jaraco-context
      jaraco-functools
    ]
    ++ lib.optionals stdenv.hostPlatform.isLinux [
      jeepney
      secretstorage
    ]
    ++ lib.optionals (pythonOlder "3.12") [ importlib-metadata ];

  postInstall = ''
    installShellCompletion --cmd keyring \
      --bash <($out/bin/keyring --print-completion bash) \
      --zsh <($out/bin/keyring --print-completion zsh)
  '';

  pythonImportsCheck = [
    "keyring"
    "keyring.backend"
  ];

  nativeCheckInputs = [ pytestCheckHook ];

  disabledTestPaths =
    [ "tests/backends/test_macOS.py" ]
    # These tests fail when sandboxing is enabled because they are unable to get a password from keychain.
    ++ lib.optional stdenv.hostPlatform.isDarwin "tests/test_multiprocess.py";

  meta = with lib; {
    description = "Store and access your passwords safely";
    homepage = "https://github.com/jaraco/keyring";
    changelog = "https://github.com/jaraco/keyring/blob/v${version}/NEWS.rst";
    license = licenses.mit;
    mainProgram = "keyring";
    maintainers = with maintainers; [ jnsgruk ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -316,6 +316,7 @@ mapAliases ({
  Kajiki = kajiki; # added 2023-02-19
  keepkey_agent = keepkey-agent; # added 2024-01-06
  Keras = keras; # added 2021-11-25
  keyring_24 = throw "keyring_24 has been removed, use keyring instead"; # added 2025-01-01
  ldap = python-ldap; # added 2022-09-16
  lammps-cython = throw "lammps-cython no longer builds and is unmaintained"; # added 2021-07-04
  langchainplus-sdk = langsmith; # added 2023-08-01
+0 −2
Original line number Diff line number Diff line
@@ -6949,8 +6949,6 @@ self: super: with self; {
  keyring = callPackage ../development/python-modules/keyring { };
  keyring_24 = callPackage ../development/python-modules/keyring_24 { };
  keyring-pass = callPackage ../development/python-modules/keyring-pass { };
  keyrings-cryptfile = callPackage ../development/python-modules/keyrings-cryptfile { };