30 lines
585 B
Nix
Raw Normal View History

{ lib
2020-12-08 16:42:07 +01:00
, buildPythonPackage
, fetchPypi
, wrapio
}:
buildPythonPackage rec {
pname = "survey";
2021-02-15 12:54:21 +01:00
version = "3.4.2";
2020-12-08 16:42:07 +01:00
src = fetchPypi {
inherit pname version;
2021-02-15 12:54:21 +01:00
sha256 = "sha256-aF7ZS5oxeIOb7mJsrusdc3HefcPE+3OTXcJB/pjJxFY=";
2020-12-08 16:42:07 +01:00
};
propagatedBuildInputs = [
wrapio
];
doCheck = false;
pythonImportsCheck = [ "survey" ];
meta = with lib; {
2020-12-08 16:42:07 +01:00
homepage = "https://github.com/Exahilosys/survey";
description = "A simple library for creating beautiful interactive prompts";
license = licenses.mit;
maintainers = with maintainers; [ sfrijters ];
};
}