lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #263815 from NickCao/enhancements

python311Packages.enhancements: drop

authored by

Nick Cao and committed by
GitHub
3aef0f84 9bce54ec

+1 -45
-43
pkgs/development/python-modules/enhancements/default.nix
··· 1 - { lib 2 - , argcomplete 3 - , buildPythonPackage 4 - , fetchFromGitHub 5 - , pytestCheckHook 6 - , pythonOlder 7 - , typeguard 8 - }: 9 - 10 - buildPythonPackage rec { 11 - pname = "enhancements"; 12 - version = "0.4.0"; 13 - format = "setuptools"; 14 - 15 - disabled = pythonOlder "3.7"; 16 - 17 - src = fetchFromGitHub { 18 - owner = "ssh-mitm"; 19 - repo = "python-enhancements"; 20 - rev = version; 21 - hash = "sha256-Nff44WAQwSbkRpUHb9ANsQWWH2B819gtwQdXAjWJJls="; 22 - }; 23 - 24 - propagatedBuildInputs = [ 25 - argcomplete 26 - typeguard 27 - ]; 28 - 29 - nativeCheckInputs = [ 30 - pytestCheckHook 31 - ]; 32 - 33 - pythonImportsCheck = [ 34 - "enhancements" 35 - ]; 36 - 37 - meta = with lib; { 38 - description = "Library which extends various Python classes"; 39 - homepage = "https://enhancements.readthedocs.io"; 40 - license = licenses.lgpl3Only; 41 - maintainers = with maintainers; [ fab ]; 42 - }; 43 - }
+1
pkgs/top-level/python-aliases.nix
··· 129 129 eebrightbox = throw "eebrightbox is unmaintained upstream and has therefore been removed"; # added 2022-02-03 130 130 EasyProcess = easyprocess; # added 2023-02-19 131 131 email_validator = email-validator; # added 2022-06-22 132 + enhancements = throw "enhancements is unmaintained upstream and has therefore been removed"; # added 2023-10-27 132 133 et_xmlfile = et-xmlfile; # added 2023-10-16 133 134 ev3dev2 = python-ev3dev2; # added 2023-06-19 134 135 Fabric = fabric; # addedd 2023-02-19
-2
pkgs/top-level/python-packages.nix
··· 3533 3533 3534 3534 energyzero = callPackage ../development/python-modules/energyzero { }; 3535 3535 3536 - enhancements = callPackage ../development/python-modules/enhancements { }; 3537 - 3538 3536 enlighten = callPackage ../development/python-modules/enlighten { }; 3539 3537 3540 3538 enocean = callPackage ../development/python-modules/enocean { };