pythonPackages.qtpy: init at 1.3.1

This commit is contained in:
Joerg Thalheim 2017-11-15 15:18:39 +00:00
parent f6592cc96d
commit d1d4f91754
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, buildPythonPackage, fetchPypi, pyside, pytest }:
buildPythonPackage rec {
pname = "QtPy";
version = "1.3.1";
src = fetchPypi {
inherit pname version;
sha256 = "04skhjb2dbbhvpq0x71nnz2h68805fkxfpkdjhwvd7lzsljjbbq8";
};
# no concrete propagatedBuildInputs as multiple backends are supposed
checkInputs = [ pyside pytest ];
doCheck = false; # require X
checkPhase = ''
py.test qtpy/tests
'';
meta = with stdenv.lib; {
description = "Abstraction layer for PyQt5/PyQt4/PySide2/PySide";
homepage = https://github.com/spyder-ide/qtpy;
license = licenses.mit;
};
}

View file

@ -17126,6 +17126,8 @@ in {
qtconsole = callPackage ../development/python-modules/qtconsole { };
qtpy = callPackage ../development/python-modules/qtpy { };
quantities = buildPythonPackage rec {
name = "quantities-0.10.1";