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

26 lines
620 B
Nix
Raw Normal View History

2017-11-15 16:18:39 +01:00
{ stdenv, buildPythonPackage, fetchPypi, pyside, pytest }:
buildPythonPackage rec {
pname = "QtPy";
version = "1.9.0";
2017-11-15 16:18:39 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "13cw8l7zrhbdi03k1wl1pg9xdl4ahdfa7yz8gd0f23sxnm22rdrd";
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";
2017-11-15 16:18:39 +01:00
license = licenses.mit;
};
}