pyte: init at 0.7.0
This commit is contained in:
parent
0e4be9e5f0
commit
208e5c99c4
28
pkgs/development/python-modules/pyte/default.nix
Normal file
28
pkgs/development/python-modules/pyte/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{ stdenv, buildPythonPackage, fetchPypi, pytest, pytestrunner, wcwidth }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pyte";
|
||||||
|
version = "0.7.0";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1an54hvyjm8gncx8cgabz9mkpgjkdb0bkyjlkh7g7f94nr3wnfl7";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ wcwidth ];
|
||||||
|
|
||||||
|
checkInputs = [ pytest pytestrunner ];
|
||||||
|
|
||||||
|
# tries to write to os.path.dirname(__file__) in test_input_output
|
||||||
|
checkPhase = ''
|
||||||
|
py.test -k "not test_input_output"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Simple VTXXX-compatible linux terminal emulator";
|
||||||
|
homepage = https://github.com/selectel/pyte;
|
||||||
|
license = licenses.lgpl3;
|
||||||
|
maintainers = with maintainers; [ flokli ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -12493,6 +12493,8 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pyte = callPackage ../development/python-modules/pyte { };
|
||||||
|
|
||||||
graphviz = buildPythonPackage rec {
|
graphviz = buildPythonPackage rec {
|
||||||
name = "graphviz-${version}";
|
name = "graphviz-${version}";
|
||||||
version = "0.5.2";
|
version = "0.5.2";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user