python3Packages.survey: allow check phase, remove 'with lib' (#404334)

authored by Aleksana and committed by GitHub dd4360ca 84b559f7

+3 -4
+3 -4
pkgs/development/python-modules/survey/default.nix
··· 24 24 setuptools-scm 25 25 ]; 26 26 27 - doCheck = false; 28 27 pythonImportsCheck = [ "survey" ]; 29 28 30 - meta = with lib; { 29 + meta = { 31 30 description = "Simple library for creating beautiful interactive prompts"; 32 31 homepage = "https://github.com/Exahilosys/survey"; 33 32 changelog = "https://github.com/Exahilosys/survey/releases/tag/v${version}"; 34 - license = licenses.mit; 35 - maintainers = with maintainers; [ sfrijters ]; 33 + license = lib.licenses.mit; 34 + maintainers = with lib.maintainers; [ sfrijters ]; 36 35 }; 37 36 }