forked from mirrors/nixpkgs
curtsies: init at 0.2.11
This commit is contained in:
parent
208e5c99c4
commit
11bba268fe
27
pkgs/development/python-modules/curtsies/default.nix
Normal file
27
pkgs/development/python-modules/curtsies/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue