python312Packages.enlighten: reorder inputs & modernize attributes

Doron Behar 20054d16 986d046c

Changed files
+9 -3
pkgs
development
python-modules
enlighten
+9 -3
pkgs/development/python-modules/enlighten/default.nix
···
lib,
buildPythonPackage,
fetchPypi,
+
pythonOlder,
+
+
# dependencies
blessed,
prefixed,
+
+
# tests
pytestCheckHook,
-
pythonOlder,
}:
buildPythonPackage rec {
···
hash = "sha256-qfpY4o5i3+9wg5D+6w7jxOZHgsACdGqUhzOQ/sF3/v4=";
};
-
propagatedBuildInputs = [
+
dependencies = [
blessed
prefixed
];
-
nativeCheckInputs = [ pytestCheckHook ];
+
nativeCheckInputs = [
+
pytestCheckHook
+
];
pythonImportsCheck = [ "enlighten" ];