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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
855 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools-scm
, pyqt5
2022-03-10 00:31:58 +01:00
, qtpy
, typing-extensions
, pytest
, pytestCheckHook
2022-03-10 00:31:58 +01:00
}:
buildPythonPackage rec {
pname = "superqt";
version = "0.3.1";
2022-03-10 00:31:58 +01:00
src = fetchFromGitHub {
owner = "napari";
repo = pname;
rev = "v${version}";
sha256 = "sha256-DPjJxOgybNvZ3YvYHr48fmx59Puck61Dzm2G4M9qKo4=";
};
format = "pyproject";
nativeBuildInputs = [ setuptools-scm ];
2022-03-10 00:31:58 +01:00
propagatedBuildInputs = [ pyqt5 qtpy typing-extensions ];
checkInputs = [ pytestCheckHook pytest ];
doCheck = false; # Segfaults...
SETUPTOOLS_SCM_PRETEND_VERSION = version;
meta = with lib; {
description = "Missing widgets and components for Qt-python (napari/superqt)";
homepage = "https://github.com/napari/superqt";
license = licenses.bsd3;
maintainers = with maintainers; [ SomeoneSerge ];
};
}