Commit 093a223e authored by Wolfgang Walther's avatar Wolfgang Walther Committed by Jörg Thalheim
Browse files

python3Packages.pythonix: drop

Unmaintained since 2022.
parent a3dd8f69
Loading
Loading
Loading
Loading
+0 −54
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  ninja,
  boost,
  meson,
  pkg-config,
  nix,
  isPy3k,
  python,
}:

buildPythonPackage rec {
  pname = "pythonix";
  version = "0.1.7";
  format = "other";

  src = fetchFromGitHub {
    owner = "Mic92";
    repo = "pythonix";
    rev = "v${version}";
    sha256 = "1wxqv3i4bva2qq9mx670bcx0g0irjn68fvk28dwvhay9ndwcspqf";
  };

  disabled = !isPy3k;

  nativeBuildInputs = [
    meson
    ninja
    pkg-config
  ];

  buildInputs = [
    nix
    boost
  ];

  postInstall = ''
    # This is typically set by pipInstallHook/eggInstallHook,
    # so we have to do so manually when using meson
    export PYTHONPATH=$out/${python.sitePackages}:$PYTHONPATH
  '';

  pythonImportsCheck = [ "nix" ];

  meta = with lib; {
    description = ''
      Eval nix code from python.
    '';
    maintainers = [ ];
    license = licenses.mit;
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -589,6 +589,7 @@ mapAliases ({
  python-myq = throw "python-myq has been removed, as the service provider has decided to block its API requests"; # added 2023-12-07
  python-picnic-api = throw "python-picnic-api was removed because Home Assistant switched to python-picnic-api2"; # added 2025-03-05
  python-unshare = throw "python-unshare was removed as unmaintained since 2016"; # added 2025-05-25
  pythonix = throw "pythonix was removed as it was unmaintained since 2022"; # added 2025-07-24
  pytrends = throw "pytrends has been removed, as it no longer works and is abandoned upstream"; # added 2025-02-02
  pyqldb = throw "pyqldb has been removed, because the underlying service is reaching end of support"; # added 2025-07-30
  pyqt4 = throw "pyqt4 has been removed, because it depended on the long EOL qt4"; # added 2022-06-09
+0 −5
Original line number Diff line number Diff line
@@ -14957,11 +14957,6 @@ self: super: with self; {
  pythonfinder = callPackage ../development/python-modules/pythonfinder { };
  pythonix = callPackage ../development/python-modules/pythonix {
    nix = pkgs.nixVersions.nix_2_3;
    meson = pkgs.meson.override { python3 = self.python; };
  };
  pythonkuma = callPackage ../development/python-modules/pythonkuma { };
  pythonnet = callPackage ../development/python-modules/pythonnet { };