linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / survey / default.nix
blob99a2d85aaa2b3db311512c4bc447463a850b8405
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , wrapio
5 }:
7 buildPythonPackage rec {
8   pname = "survey";
9   version = "3.4.2";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "sha256-aF7ZS5oxeIOb7mJsrusdc3HefcPE+3OTXcJB/pjJxFY=";
14   };
16   propagatedBuildInputs = [
17     wrapio
18   ];
20   doCheck = false;
21   pythonImportsCheck = [ "survey" ];
23   meta = with lib; {
24     homepage = "https://github.com/Exahilosys/survey";
25     description = "A simple library for creating beautiful interactive prompts";
26     license = licenses.mit;
27     maintainers = with maintainers; [ sfrijters ];
28   };