Unverified Commit 5ba196f0 authored by Stefan Frijters's avatar Stefan Frijters
Browse files

python3Packages.survey: remove 'with lib'

parent 0bdf8304
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -26,11 +26,11 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "survey" ];

  meta = with lib; {
  meta = {
    description = "Simple library for creating beautiful interactive prompts";
    homepage = "https://github.com/Exahilosys/survey";
    changelog = "https://github.com/Exahilosys/survey/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ sfrijters ];
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ sfrijters ];
  };
}