ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / survey / default.nix
blob34b1eed1727954451c7c4087e827641455ec0add
1 { lib
2 , buildPythonPackage
3 , pythonOlder
4 , fetchPypi
5 , wrapio
6 }:
8 buildPythonPackage rec {
9   pname = "survey";
10   version = "3.4.3";
12   disabled = pythonOlder "3.5";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "sha256-TK89quY3bpNIEz1n3Ecew4FnTH6QgeSLdDNV86gq7+I=";
17   };
19   propagatedBuildInputs = [
20     wrapio
21   ];
23   doCheck = false;
24   pythonImportsCheck = [ "survey" ];
26   meta = with lib; {
27     homepage = "https://github.com/Exahilosys/survey";
28     description = "A simple library for creating beautiful interactive prompts";
29     license = licenses.mit;
30     maintainers = with maintainers; [ sfrijters ];
31   };