61 lines
1,003 B
Nix
61 lines
1,003 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, argcomplete
|
|
, colorama
|
|
, jmespath
|
|
, pygments
|
|
, pyyaml
|
|
, six
|
|
, tabulate
|
|
, mock
|
|
, vcrpy
|
|
, pytest
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "knack";
|
|
version = "0.11.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-62VoAB6RELGzIJQUMcUQM9EEzJjNoiVKXCsJulaf1JQ=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
argcomplete
|
|
colorama
|
|
jmespath
|
|
pygments
|
|
pyyaml
|
|
six
|
|
tabulate
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
mock
|
|
vcrpy
|
|
pytest
|
|
];
|
|
|
|
checkPhase = ''
|
|
HOME=$TMPDIR pytest .
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"knack"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/microsoft/knack";
|
|
description = "A Command-Line Interface framework";
|
|
changelog = "https://github.com/microsoft/knack/blob/v${version}/HISTORY.rst";
|
|
platforms = platforms.all;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jonringer ];
|
|
};
|
|
}
|