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

26 lines
669 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, blessings, mock, nose, pyte, wcwidth, typing }:
2017-10-29 10:21:18 +00:00
buildPythonPackage rec {
pname = "curtsies";
2018-02-17 13:19:06 +00:00
version = "0.3.0";
2017-10-29 10:21:18 +00:00
src = fetchPypi {
inherit pname version;
2018-02-17 13:19:06 +00:00
sha256 = "89c802ec051d01dec6fc983e9856a3706e4ea8265d2940b1f6d504a9e26ed3a9";
2017-10-29 10:21:18 +00:00
};
propagatedBuildInputs = [ blessings wcwidth typing ];
2017-10-29 10:21:18 +00:00
checkInputs = [ mock pyte nose ];
2017-10-29 10:21:18 +00:00
checkPhase = ''
nosetests tests
2017-10-29 10:21:18 +00:00
'';
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 ];
};
}