2018-10-27 15:44:41 +02:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, python
|
|
|
|
, mock
|
|
|
|
, blessings
|
|
|
|
, nose
|
|
|
|
, nose_progressive
|
|
|
|
, pillow
|
|
|
|
, args
|
|
|
|
, pkgs
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "clint";
|
|
|
|
version = "0.5.1";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "1an5lkkqk1zha47198p42ji3m94xmzx1a03dn7866m87n4r4q8h5";
|
|
|
|
};
|
|
|
|
|
|
|
|
LC_ALL="en_US.UTF-8";
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
${python.interpreter} test_clint.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [ mock nose nose_progressive pkgs.glibcLocales ];
|
|
|
|
propagatedBuildInputs = [ pillow blessings args ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/kennethreitz/clint";
|
2018-10-27 15:44:41 +02:00
|
|
|
description = "Python Command Line Interface Tools";
|
|
|
|
license = licenses.isc;
|
|
|
|
maintainers = with maintainers; [ domenkozar ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|