33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
54 lines
925 B
Nix
54 lines
925 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
|
|
# native
|
|
, poetry-core
|
|
|
|
# propagated
|
|
, blessed
|
|
, python-editor
|
|
, readchar
|
|
|
|
# tests
|
|
, pytest-mock
|
|
, pytestCheckHook
|
|
, pexpect
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "inquirer";
|
|
version = "3.1.1";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub rec {
|
|
owner = "magmax";
|
|
repo = "python-inquirer";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-gDJqD0IHshyGw9MmMtYjkkpvYklRLgPd6EtLVqi2I/o=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
blessed
|
|
python-editor
|
|
readchar
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pexpect
|
|
pytest-mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/magmax/python-inquirer";
|
|
description = "A collection of common interactive command line user interfaces, based on Inquirer.js";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.mmahut ];
|
|
};
|
|
}
|