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

26 lines
630 B
Nix
Raw Normal View History

2017-11-15 15:18:39 +00:00
{ stdenv, buildPythonPackage, fetchPypi, pyside, pytest }:
buildPythonPackage rec {
pname = "QtPy";
2018-05-09 14:50:17 +00:00
version = "1.4.2";
2017-11-15 15:18:39 +00:00
src = fetchPypi {
inherit pname version;
2018-05-09 14:50:17 +00:00
sha256 = "1d1a4343540433a203280f162d43226e4c87489155fe4a9a6f1923ba11362bf9";
2017-11-15 15:18:39 +00: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;
};
}