mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-25 17:55:21 +00:00
pythonPackages.survey: init at 3.1.1
This commit is contained in:
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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user