From 0bdf8304f3c34d549585233da7fef1863370be29 Mon Sep 17 00:00:00 2001 From: Stefan Frijters Date: Mon, 5 May 2025 12:29:38 +0200 Subject: [PATCH 1/2] python3Packages.survey: allow check phase --- pkgs/development/python-modules/survey/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/development/python-modules/survey/default.nix b/pkgs/development/python-modules/survey/default.nix index 2e264d7756f0..9ad94c93ebd7 100644 --- a/pkgs/development/python-modules/survey/default.nix +++ b/pkgs/development/python-modules/survey/default.nix @@ -24,7 +24,6 @@ buildPythonPackage rec { setuptools-scm ]; - doCheck = false; pythonImportsCheck = [ "survey" ]; meta = with lib; { From 5ba196f04fefba2ede0ca7b7335627d0af27441e Mon Sep 17 00:00:00 2001 From: Stefan Frijters Date: Mon, 5 May 2025 12:29:49 +0200 Subject: [PATCH 2/2] python3Packages.survey: remove 'with lib' --- pkgs/development/python-modules/survey/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/survey/default.nix b/pkgs/development/python-modules/survey/default.nix index 9ad94c93ebd7..f2ccca31d4fa 100644 --- a/pkgs/development/python-modules/survey/default.nix +++ b/pkgs/development/python-modules/survey/default.nix @@ -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 ]; }; }