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

55 lines
830 B
Nix
Raw Normal View History

2019-06-06 00:05:51 +01:00
{ stdenv
, lib
, buildPythonPackage
, fetchPypi
, argcomplete
, colorama
, jmespath
, knack
, pygments
, pyyaml
, six
, tabulate
, mock
, vcrpy
, pytest
}:
buildPythonPackage rec {
pname = "knack";
2020-06-06 07:47:16 +01:00
version = "0.7.1";
2019-06-06 00:05:51 +01:00
src = fetchPypi {
inherit pname version;
2020-06-06 07:47:16 +01:00
sha256 = "fcef6040164ebe7d69629e4e089b398c9b980791446496301befcf8381dba0fc";
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 ];
};
}