about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/survey/default.nix
blob: f9bec0451ff457dc2569fa6e73de4063b83bf919 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, wrapio
}:

buildPythonPackage rec {
  pname = "survey";
  version = "3.1.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-R/PfXW/CnqYiOWbCxPAYwneg6j6CLvdIpITZ2eIXn+M=";
  };

  propagatedBuildInputs = [
    wrapio
  ];

  doCheck = false;
  pythonImportsCheck = [ "survey" ];

  meta = with lib; {
    homepage = "https://github.com/Exahilosys/survey";
    description = "A simple library for creating beautiful interactive prompts";
    license = licenses.mit;
    maintainers = with maintainers; [ sfrijters ];
  };
}