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