python3Packages.cmd2: 0.9.4 -> 0.9.6
This commit is contained in:
parent
ad85b9a9f8
commit
ad6ee9c61f
@ -1,15 +1,16 @@
|
|||||||
{ stdenv, fetchPypi, buildPythonPackage, pythonOlder, isPy3k
|
{ stdenv, fetchPypi, buildPythonPackage, pythonOlder, isPy3k
|
||||||
, pyperclip, six, pyparsing, vim, wcwidth, colorama
|
, pyperclip, six, pyparsing, vim, wcwidth, colorama
|
||||||
, contextlib2 ? null, setuptools_scm
|
, contextlib2 ? null, typing ? null, setuptools_scm
|
||||||
, pytest, mock, which, glibcLocales
|
, pytest, mock ? null, pytest-mock
|
||||||
|
, which, glibcLocales
|
||||||
}:
|
}:
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "cmd2";
|
pname = "cmd2";
|
||||||
version = "0.9.4";
|
version = "0.9.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "0037dcf92331c63ae43e7e644536e646fff8be2fd5a83da06b3482f910f929c6";
|
sha256 = "0279p76n6yny6psys9fc6yjdrqiisbpmrl59a2vxy56hi7094kaw";
|
||||||
};
|
};
|
||||||
|
|
||||||
LC_ALL="en_US.UTF-8";
|
LC_ALL="en_US.UTF-8";
|
||||||
@ -23,12 +24,6 @@ buildPythonPackage rec {
|
|||||||
export PATH=$(realpath bin):$PATH
|
export PATH=$(realpath bin):$PATH
|
||||||
'';
|
'';
|
||||||
|
|
||||||
checkInputs= [ pytest mock which vim glibcLocales ];
|
|
||||||
checkPhase = ''
|
|
||||||
# test_path_completion_user_expansion might be fixed in the next release
|
|
||||||
py.test -k 'not test_path_completion_user_expansion'
|
|
||||||
'';
|
|
||||||
doCheck = !stdenv.isDarwin;
|
|
||||||
disabled = !isPy3k;
|
disabled = !isPy3k;
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
@ -42,9 +37,20 @@ buildPythonPackage rec {
|
|||||||
pyparsing
|
pyparsing
|
||||||
wcwidth
|
wcwidth
|
||||||
]
|
]
|
||||||
++ stdenv.lib.optional (pythonOlder "3.5") contextlib2
|
++ stdenv.lib.optionals (pythonOlder "3.5") [contextlib2 typing]
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|
||||||
|
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; {
|
meta = with stdenv.lib; {
|
||||||
description = "Enhancements for standard library's cmd module";
|
description = "Enhancements for standard library's cmd module";
|
||||||
homepage = https://github.com/python-cmd2/cmd2;
|
homepage = https://github.com/python-cmd2/cmd2;
|
||||||
|
Loading…
Reference in New Issue
Block a user