mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
pythonPackages.backports-entry-points-selectable: remove at 1.0.4
See * https://github.com/NixOS/nixpkgs/pull/128762#issuecomment-871618625 * https://github.com/NixOS/nixpkgs/pull/128762#issuecomment-871642070
This commit is contained in:
parent
b1a891bbd3
commit
29bcfeb59c
3 changed files with 1 additions and 38 deletions
|
@ -1,36 +0,0 @@
|
||||||
{ lib
|
|
||||||
, buildPythonPackage
|
|
||||||
, fetchPypi
|
|
||||||
, pythonOlder
|
|
||||||
, importlib-metadata
|
|
||||||
, pytestCheckHook
|
|
||||||
}:
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
|
||||||
pname = "backports.entry-points-selectable";
|
|
||||||
version = "1.0.4";
|
|
||||||
|
|
||||||
src = fetchPypi {
|
|
||||||
inherit version;
|
|
||||||
# pypi project name and tarball name differ
|
|
||||||
pname = builtins.replaceStrings [ "-" ] [ "_" ] pname;
|
|
||||||
sha256 = "4acda84d96855beece3bf9aad9a1030aceb5f744b8ce9af7d5ee6dd672cdd3bd";
|
|
||||||
};
|
|
||||||
|
|
||||||
format = "pyproject";
|
|
||||||
|
|
||||||
propagatedBuildInputs = lib.optionals (pythonOlder "3.8") [
|
|
||||||
importlib-metadata
|
|
||||||
];
|
|
||||||
|
|
||||||
checkInputs = [
|
|
||||||
pytestCheckHook
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "Compatibility shim providing selectable entry points for older implementations";
|
|
||||||
license = licenses.mit;
|
|
||||||
maintainers = [ maintainers.sternenseemann ];
|
|
||||||
homepage = "https://github.com/jaraco/backports.entry_points_selectable";
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -33,6 +33,7 @@ in
|
||||||
### Deprecated aliases - for backward compatibility
|
### Deprecated aliases - for backward compatibility
|
||||||
|
|
||||||
mapAliases ({
|
mapAliases ({
|
||||||
|
backports-entry-points-selectable = throw "backports-entry-points-selectable has been removed"; # added 2021-07-01
|
||||||
blockdiagcontrib-cisco = throw "blockdiagcontrib-cisco is not compatible with blockdiag 2.0.0 and has been removed."; # Added 2020-11-29
|
blockdiagcontrib-cisco = throw "blockdiagcontrib-cisco is not compatible with blockdiag 2.0.0 and has been removed."; # Added 2020-11-29
|
||||||
bt_proximity = bt-proximity; # added 2021-07-02
|
bt_proximity = bt-proximity; # added 2021-07-02
|
||||||
bugseverywhere = throw "bugseverywhere has been removed: Abandoned by upstream."; # Added 2019-11-27
|
bugseverywhere = throw "bugseverywhere has been removed: Abandoned by upstream."; # Added 2019-11-27
|
||||||
|
|
|
@ -977,8 +977,6 @@ in {
|
||||||
|
|
||||||
backports-datetime-fromisoformat = callPackage ../development/python-modules/backports-datetime-fromisoformat { };
|
backports-datetime-fromisoformat = callPackage ../development/python-modules/backports-datetime-fromisoformat { };
|
||||||
|
|
||||||
backports-entry-points-selectable = callPackage ../development/python-modules/backports-entry-points-selectable { };
|
|
||||||
|
|
||||||
backports_functools_lru_cache = callPackage ../development/python-modules/backports_functools_lru_cache { };
|
backports_functools_lru_cache = callPackage ../development/python-modules/backports_functools_lru_cache { };
|
||||||
|
|
||||||
backports_shutil_get_terminal_size = callPackage ../development/python-modules/backports_shutil_get_terminal_size { };
|
backports_shutil_get_terminal_size = callPackage ../development/python-modules/backports_shutil_get_terminal_size { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue