pythonPackages.survey: init at 3.1.1
This commit is contained in:
parent
21f615785c
commit
48b2d18ff6
29
pkgs/development/python-modules/survey/default.nix
Normal file
29
pkgs/development/python-modules/survey/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user