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

26 lines
630 B
Nix
Raw Normal View History

2017-11-15 16:18:39 +01:00
{ stdenv, buildPythonPackage, fetchPypi, pyside, pytest }:
buildPythonPackage rec {
pname = "QtPy";
2018-04-04 20:16:19 +02:00
version = "1.4.0";
2017-11-15 16:18:39 +01:00
src = fetchPypi {
inherit pname version;
2018-04-04 20:16:19 +02:00
sha256 = "8e78e7ce28015c1041be68b90f43048c9815e8c89d3362f8073feecdc70eafba";
2017-11-15 16:18:39 +01:00
};
# 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;
};
}