python3Packages.superqt: fix build
This commit is contained in:
parent
29a0b8d913
commit
302bddeb3b
1 changed files with 6 additions and 2 deletions
|
@ -3,12 +3,16 @@
|
|||
, fetchFromGitHub
|
||||
, setuptools-scm
|
||||
, pyqt5
|
||||
, qtpy
|
||||
, typing-extensions
|
||||
, pytest
|
||||
, pytestCheckHook
|
||||
}: buildPythonPackage rec {
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "superqt";
|
||||
version = "0.3.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "napari";
|
||||
repo = pname;
|
||||
|
@ -17,7 +21,7 @@
|
|||
};
|
||||
format = "pyproject";
|
||||
nativeBuildInputs = [ setuptools-scm ];
|
||||
propagatedBuildInputs = [ pyqt5 typing-extensions ];
|
||||
propagatedBuildInputs = [ pyqt5 qtpy typing-extensions ];
|
||||
checkInputs = [ pytestCheckHook pytest ];
|
||||
doCheck = false; # Segfaults...
|
||||
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
||||
|
|
Loading…
Reference in a new issue