mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 00:24:18 +00:00
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.
62 lines
1003 B
Nix
62 lines
1003 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, argcomplete
|
|
, colorama
|
|
, jmespath
|
|
, pygments
|
|
, pyyaml
|
|
, six
|
|
, tabulate
|
|
, mock
|
|
, vcrpy
|
|
, pytest
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "knack";
|
|
version = "0.10.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-xXKBKCl+bSaXkQhc+Wwv/fzvWM+DxjSly5LrA7KSmDg=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|