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
|
, fetchFromGitHub
|
||||||
, setuptools-scm
|
, setuptools-scm
|
||||||
, pyqt5
|
, pyqt5
|
||||||
|
, qtpy
|
||||||
, typing-extensions
|
, typing-extensions
|
||||||
, pytest
|
, pytest
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
}: buildPythonPackage rec {
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
pname = "superqt";
|
pname = "superqt";
|
||||||
version = "0.3.1";
|
version = "0.3.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "napari";
|
owner = "napari";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
|
@ -17,7 +21,7 @@
|
||||||
};
|
};
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
nativeBuildInputs = [ setuptools-scm ];
|
nativeBuildInputs = [ setuptools-scm ];
|
||||||
propagatedBuildInputs = [ pyqt5 typing-extensions ];
|
propagatedBuildInputs = [ pyqt5 qtpy typing-extensions ];
|
||||||
checkInputs = [ pytestCheckHook pytest ];
|
checkInputs = [ pytestCheckHook pytest ];
|
||||||
doCheck = false; # Segfaults...
|
doCheck = false; # Segfaults...
|
||||||
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
||||||
|
|
Loading…
Reference in a new issue