Unverified Commit 3aef0f84 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #263815 from NickCao/enhancements

python311Packages.enhancements: drop
parents 9bce54ec 8b0061d8
Loading
Loading
Loading
Loading
+0 −43
Original line number Diff line number Diff line
{ 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 ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -129,6 +129,7 @@ mapAliases ({
  eebrightbox = throw "eebrightbox is unmaintained upstream and has therefore been removed"; # added 2022-02-03
  EasyProcess = easyprocess; # added 2023-02-19
  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
  ev3dev2 = python-ev3dev2; # added 2023-06-19
  Fabric = fabric; # addedd 2023-02-19
+0 −2
Original line number Diff line number Diff line
@@ -3533,8 +3533,6 @@ self: super: with self; {
  energyzero =  callPackage ../development/python-modules/energyzero { };
  enhancements = callPackage ../development/python-modules/enhancements { };
  enlighten = callPackage ../development/python-modules/enlighten { };
  enocean = callPackage ../development/python-modules/enocean { };