depot/third_party/nixpkgs/pkgs/development/python-modules/survey/default.nix
Default email a5adf1ddd8 Project import generated by Copybara.
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
2021-01-15 23:18:51 +01:00

29 lines
593 B
Nix

{ 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 ];
};
}