mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 20:55:31 +03:00
python311Packages.enhancements: drop
This commit is contained in:
parent
682fe90c7a
commit
8b0061d8f2
3 changed files with 1 additions and 45 deletions
|
@ -1,43 +0,0 @@
|
||||||
{ lib
|
|
||||||
, argcomplete
|
|
||||||
, buildPythonPackage
|
|
||||||
, fetchFromGitHub
|
|
||||||
, pytestCheckHook
|
|
||||||
, pythonOlder
|
|
||||||
, typeguard
|
|
||||||
}:
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
|
||||||
pname = "enhancements";
|
|
||||||
version = "0.4.0";
|
|
||||||
format = "setuptools";
|
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "ssh-mitm";
|
|
||||||
repo = "python-enhancements";
|
|
||||||
rev = version;
|
|
||||||
hash = "sha256-Nff44WAQwSbkRpUHb9ANsQWWH2B819gtwQdXAjWJJls=";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
|
||||||
argcomplete
|
|
||||||
typeguard
|
|
||||||
];
|
|
||||||
|
|
||||||
nativeCheckInputs = [
|
|
||||||
pytestCheckHook
|
|
||||||
];
|
|
||||||
|
|
||||||
pythonImportsCheck = [
|
|
||||||
"enhancements"
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "Library which extends various Python classes";
|
|
||||||
homepage = "https://enhancements.readthedocs.io";
|
|
||||||
license = licenses.lgpl3Only;
|
|
||||||
maintainers = with maintainers; [ fab ];
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -128,6 +128,7 @@ mapAliases ({
|
||||||
eebrightbox = throw "eebrightbox is unmaintained upstream and has therefore been removed"; # added 2022-02-03
|
eebrightbox = throw "eebrightbox is unmaintained upstream and has therefore been removed"; # added 2022-02-03
|
||||||
EasyProcess = easyprocess; # added 2023-02-19
|
EasyProcess = easyprocess; # added 2023-02-19
|
||||||
email_validator = email-validator; # added 2022-06-22
|
email_validator = email-validator; # added 2022-06-22
|
||||||
|
enhancements = throw "enhancements is unmaintained upstream and has therefore been removed"; # added 2023-10-27
|
||||||
et_xmlfile = et-xmlfile; # added 2023-10-16
|
et_xmlfile = et-xmlfile; # added 2023-10-16
|
||||||
ev3dev2 = python-ev3dev2; # added 2023-06-19
|
ev3dev2 = python-ev3dev2; # added 2023-06-19
|
||||||
Fabric = fabric; # addedd 2023-02-19
|
Fabric = fabric; # addedd 2023-02-19
|
||||||
|
|
|
@ -3531,8 +3531,6 @@ self: super: with self; {
|
||||||
|
|
||||||
energyzero = callPackage ../development/python-modules/energyzero { };
|
energyzero = callPackage ../development/python-modules/energyzero { };
|
||||||
|
|
||||||
enhancements = callPackage ../development/python-modules/enhancements { };
|
|
||||||
|
|
||||||
enlighten = callPackage ../development/python-modules/enlighten { };
|
enlighten = callPackage ../development/python-modules/enlighten { };
|
||||||
|
|
||||||
enocean = callPackage ../development/python-modules/enocean { };
|
enocean = callPackage ../development/python-modules/enocean { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue