nixpkgs/pkgs/development/python-modules/knack/default.nix

53 lines
813 B
Nix
Raw Normal View History

{ lib
2019-06-06 00:05:51 +01:00
, buildPythonPackage
, fetchPypi
, argcomplete
, colorama
, jmespath
, pygments
, pyyaml
, six
, tabulate
, mock
, vcrpy
, pytest
}:
buildPythonPackage rec {
pname = "knack";
2021-03-27 05:11:06 +00:00
version = "0.8.0";
2019-06-06 00:05:51 +01:00
src = fetchPypi {
inherit pname version;
2021-03-27 05:11:06 +00:00
sha256 = "16aa47240add6badd933a0b27576f3c090d7469177dc941e3ece05ca88123199";
2019-06-06 00:05:51 +01:00
};
propagatedBuildInputs = [
argcomplete
colorama
jmespath
pygments
pyyaml
six
tabulate
];
checkInputs = [
mock
vcrpy
pytest
];
checkPhase = ''
2019-07-16 10:29:59 +01:00
HOME=$TMPDIR pytest .
2019-06-06 00:05:51 +01:00
'';
meta = with lib; {
homepage = "https://github.com/microsoft/knack";
2019-06-06 00:05:51 +01:00
description = "A Command-Line Interface framework";
platforms = platforms.all;
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}