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

61 lines
1.5 KiB
Nix
Raw Normal View History

2018-06-14 02:25:58 +01:00
{ stdenv, fetchPypi, buildPythonPackage, pythonOlder, isPy3k
2019-01-18 11:01:06 +00:00
, pyperclip, six, pyparsing, vim, wcwidth, colorama, attrs
2018-10-15 11:10:30 +01:00
, contextlib2 ? null, typing ? null, setuptools_scm
, pytest, mock ? null, pytest-mock
, which, glibcLocales
}:
buildPythonPackage rec {
pname = "cmd2";
2020-05-06 14:46:39 +01:00
version = "1.0.2";
2018-06-14 02:25:58 +01:00
src = fetchPypi {
inherit pname version;
2020-05-06 14:46:39 +01:00
sha256 = "1f18plbc9yyvhn0js3d2bii9yld8zfl775gxsaw9jza5pmlg9ss2";
};
LC_ALL="en_US.UTF-8";
postPatch = stdenv.lib.optional stdenv.isDarwin ''
# Fake the impure dependencies pbpaste and pbcopy
mkdir bin
echo '#!${stdenv.shell}' > bin/pbpaste
echo '#!${stdenv.shell}' > bin/pbcopy
chmod +x bin/{pbcopy,pbpaste}
export PATH=$(realpath bin):$PATH
'';
2018-06-14 02:25:58 +01:00
disabled = !isPy3k;
2018-08-30 18:12:47 +01:00
buildInputs = [
setuptools_scm
];
propagatedBuildInputs = [
2018-06-14 02:25:58 +01:00
colorama
pyperclip
six
pyparsing
2018-06-14 02:25:58 +01:00
wcwidth
2019-01-18 11:01:06 +00:00
attrs
]
2018-10-15 11:10:30 +01:00
++ stdenv.lib.optionals (pythonOlder "3.5") [contextlib2 typing]
;
2018-10-15 11:10:30 +01:00
doCheck = !stdenv.isDarwin;
# pytest-cov
# argcomplete will generate errors
checkInputs= [ pytest mock which vim glibcLocales pytest-mock ]
++ stdenv.lib.optional (pythonOlder "3.6") [ mock ];
checkPhase = ''
# test_path_completion_user_expansion might be fixed in the next release
py.test -k 'not test_path_completion_user_expansion'
'';
meta = with stdenv.lib; {
description = "Enhancements for standard library's cmd module";
2020-04-06 14:18:39 +01:00
homepage = "https://github.com/python-cmd2/cmd2";
maintainers = with maintainers; [ teto ];
};
}