3
0
Fork 0
forked from mirrors/nixpkgs

curtsies: init at 0.2.11

This commit is contained in:
Florian Klink 2017-10-29 11:21:18 +01:00
parent 208e5c99c4
commit 11bba268fe
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ stdenv, buildPythonPackage, fetchPypi, blessings, mock, nose, pyte, pytest, wcwidth }:
buildPythonPackage rec {
pname = "curtsies";
version = "0.2.11";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "1vljmw3sy6lrqahhpyg4gk13mzcx3mwhvg8s41698ms3cpgkjipc";
};
propagatedBuildInputs = [ blessings wcwidth pyte ];
checkInputs = [ nose mock pytest ];
checkPhase = ''
py.test
'';
meta = with stdenv.lib; {
description = "Curses-like terminal wrapper, with colored strings!";
homepage = https://pypi.python.org/pypi/curtsies;
license = licenses.mit;
maintainers = with maintainers; [ flokli ];
};
}

View file

@ -3367,6 +3367,8 @@ in {
doCheck = false;
};
curtsies = callPackage ../development/python-modules/curtsies { };
oslo-vmware = buildPythonPackage rec {
name = "oslo.vmware-${version}";
version = "1.22.0";