1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00

python2nix: drop

This commit is contained in:
Robert Schütz 2021-03-08 11:04:59 +01:00
parent 6692b32105
commit f4b327a9c2
3 changed files with 1 additions and 21 deletions

View file

@ -1,19 +0,0 @@
{ lib, fetchFromGitHub, pythonPackages }:
pythonPackages.buildPythonApplication {
name = "python2nix-20140927";
src = fetchFromGitHub {
owner = "proger";
repo = "python2nix";
rev = "84e3a5bbe82e5d9d694d6db8dabf73def4ac917b";
sha256 = "022gr0gw6azfi3iq4ggb3fhkw2jljs6n5rncn45hb5liwakigj8i";
};
propagatedBuildInputs = with pythonPackages; [ requests pip setuptools ];
meta = with lib; {
maintainers = [ ];
platforms = platforms.all;
};
}

View file

@ -553,6 +553,7 @@ mapAliases ({
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
phonon = throw "phonon: Please use libsForQt5.phonon, as Qt4 support in this package has been removed."; # added 2019-11-22
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
python2nix = throw "python2nix has been removed as it is outdated. Use e.g. nixpkgs-pytools instead."; # added 2021-03-08
qca-qt5 = libsForQt5.qca-qt5; # added 2015-12-19
qcsxcad = libsForQt5.qcsxcad; # added 2020-11-05
qr-filetransfer = throw ''"qr-filetransfer" has been renamed to "qrcp"''; # added 2020-12-02

View file

@ -11576,8 +11576,6 @@ in
# Should eventually be moved inside Python interpreters.
python-setup-hook = callPackage ../development/interpreters/python/setup-hook.nix { };
python2nix = callPackage ../tools/package-management/python2nix { };
pythonDocs = recurseIntoAttrs (callPackage ../development/interpreters/python/cpython/docs {});
pypi2nix = callPackage ../development/tools/pypi2nix {};