Merge pull request #115396 from dotlambda/python2nix-drop

authored by Sandro and committed by GitHub 3061c1a1 1006509a

+3 -22
+2 -1
doc/languages-frameworks/python.section.md
··· 1188 1188 expressions for your Python project. Note that [sharing derivations from 1189 1189 pypi2nix with nixpkgs is possible but not 1190 1190 encouraged](https://github.com/nix-community/pypi2nix/issues/222#issuecomment-443497376). 1191 - - [python2nix](https://github.com/proger/python2nix) by Vladimir Kirillov. 1191 + - [nixpkgs-pytools](https://github.com/nix-community/nixpkgs-pytools) 1192 + - [poetry2nix](https://github.com/nix-community/poetry2nix) 1192 1193 1193 1194 ### Deterministic builds 1194 1195
-19
pkgs/tools/package-management/python2nix/default.nix
··· 1 - { lib, fetchFromGitHub, pythonPackages }: 2 - 3 - pythonPackages.buildPythonApplication { 4 - name = "python2nix-20140927"; 5 - 6 - src = fetchFromGitHub { 7 - owner = "proger"; 8 - repo = "python2nix"; 9 - rev = "84e3a5bbe82e5d9d694d6db8dabf73def4ac917b"; 10 - sha256 = "022gr0gw6azfi3iq4ggb3fhkw2jljs6n5rncn45hb5liwakigj8i"; 11 - }; 12 - 13 - propagatedBuildInputs = with pythonPackages; [ requests pip setuptools ]; 14 - 15 - meta = with lib; { 16 - maintainers = [ ]; 17 - platforms = platforms.all; 18 - }; 19 - }
+1
pkgs/top-level/aliases.nix
··· 554 554 phonon-backend-vlc = throw "phonon-backend-vlc: Please use libsForQt5.phonon-backend-vlc, as Qt4 support in this package has been removed."; # added 2019-11-22 555 555 phonon = throw "phonon: Please use libsForQt5.phonon, as Qt4 support in this package has been removed."; # added 2019-11-22 556 556 pynagsystemd = throw "pynagsystemd was removed as it was unmaintained and incompatible with recent systemd versions. Instead use its fork check_systemd."; # added 2020-10-24 557 + python2nix = throw "python2nix has been removed as it is outdated. Use e.g. nixpkgs-pytools instead."; # added 2021-03-08 557 558 qca-qt5 = libsForQt5.qca-qt5; # added 2015-12-19 558 559 qcsxcad = libsForQt5.qcsxcad; # added 2020-11-05 559 560 qr-filetransfer = throw ''"qr-filetransfer" has been renamed to "qrcp"''; # added 2020-12-02
-2
pkgs/top-level/all-packages.nix
··· 11578 11578 # Should eventually be moved inside Python interpreters. 11579 11579 python-setup-hook = callPackage ../development/interpreters/python/setup-hook.nix { }; 11580 11580 11581 - python2nix = callPackage ../tools/package-management/python2nix { }; 11582 - 11583 11581 pythonDocs = recurseIntoAttrs (callPackage ../development/interpreters/python/cpython/docs {}); 11584 11582 11585 11583 pypi2nix = callPackage ../development/tools/pypi2nix {};