pythonPackages.survey: init at 3.1.1

This commit is contained in:
Stefan Frijters 2020-12-08 16:42:07 +01:00
parent 21f615785c
commit 48b2d18ff6
No known key found for this signature in database
GPG key ID: 7619A6BC6E7DFA6F
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ 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 stdenv.lib; {
homepage = "https://github.com/Exahilosys/survey";
description = "A simple library for creating beautiful interactive prompts";
license = licenses.mit;
maintainers = with maintainers; [ sfrijters ];
};
}

View file

@ -7113,6 +7113,8 @@ in {
sure = callPackage ../development/python-modules/sure { };
survey = callPackage ../development/python-modules/survey { };
suseapi = callPackage ../development/python-modules/suseapi { };
svg2tikz = callPackage ../development/python-modules/svg2tikz { };