mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-23 21:33:49 +00:00
python3Packages.superqt: init at 0.2.5-1
This commit is contained in:
parent
a14d6f5936
commit
9b14333213
@ -1,4 +1,5 @@
|
||||
{ buildPythonPackage
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, setuptools
|
||||
, setuptools_scm
|
||||
|
31
pkgs/development/python-modules/superqt/default.nix
Normal file
31
pkgs/development/python-modules/superqt/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, setuptools_scm
|
||||
, pyqt5
|
||||
, typing-extensions
|
||||
, pytest
|
||||
, pytestCheckHook
|
||||
}: buildPythonPackage rec {
|
||||
pname = "superqt";
|
||||
version = "0.2.5-1";
|
||||
src = fetchFromGitHub {
|
||||
owner = "napari";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-rkTiCJ8mIogS9SDmLPiaAyhhuBx3kk6rXjCc19zbwiM=";
|
||||
};
|
||||
format = "pyproject";
|
||||
nativeBuildInputs = [ setuptools_scm ];
|
||||
propagatedBuildInputs = [ pyqt5 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 ];
|
||||
};
|
||||
}
|
@ -9369,6 +9369,8 @@ in {
|
||||
|
||||
supervisor = callPackage ../development/python-modules/supervisor { };
|
||||
|
||||
superqt = callPackage ../development/python-modules/superqt { };
|
||||
|
||||
sure = callPackage ../development/python-modules/sure { };
|
||||
|
||||
surepy = callPackage ../development/python-modules/surepy { };
|
||||
|
Loading…
Reference in New Issue
Block a user