mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #329843 from r-ryantm/auto-update/python312Packages.glueviz
python312Packages.glueviz: 1.21.0 -> 1.21.1
This commit is contained in:
commit
7dae38956e
1 changed files with 37 additions and 42 deletions
|
@ -3,69 +3,66 @@
|
|||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
pythonOlder,
|
||||
dill,
|
||||
astropy,
|
||||
dill,
|
||||
echo,
|
||||
fast-histogram,
|
||||
h5py,
|
||||
ipython,
|
||||
matplotlib,
|
||||
mpl-scatter-density,
|
||||
numpy,
|
||||
openpyxl,
|
||||
pandas,
|
||||
qt6,
|
||||
pyqt6,
|
||||
pyqt-builder,
|
||||
qtconsole,
|
||||
pytestCheckHook,
|
||||
qt6,
|
||||
scipy,
|
||||
setuptools,
|
||||
setuptools-scm,
|
||||
scipy,
|
||||
ipython,
|
||||
ipykernel,
|
||||
h5py,
|
||||
matplotlib,
|
||||
shapely,
|
||||
xlrd,
|
||||
mpl-scatter-density,
|
||||
pvextractor,
|
||||
openpyxl,
|
||||
echo,
|
||||
pytest,
|
||||
pytest-flakes,
|
||||
pytest-cov,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "glueviz";
|
||||
version = "1.21.0";
|
||||
format = "setuptools";
|
||||
version = "1.21.1";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "glue-viz";
|
||||
repo = "glue";
|
||||
rev = "refs/tags/v${version}";
|
||||
sha256 = "sha256-C9UqDdhPcaznidiDlQO27Vgct2MT9gVlH740hoYg3Bc=";
|
||||
hash = "sha256-/awIgfKbDFKM2WFlfpo5f/Px/N1aMXkV9eSTXts0aGo=";
|
||||
};
|
||||
|
||||
buildInputs = [ pyqt-builder ];
|
||||
nativeBuildInputs = [
|
||||
|
||||
nativeBuildInputs = [ qt6.wrapQtAppsHook ];
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
setuptools-scm
|
||||
qt6.wrapQtAppsHook
|
||||
];
|
||||
propagatedBuildInputs = [
|
||||
|
||||
dependencies = [
|
||||
astropy
|
||||
dill
|
||||
setuptools
|
||||
scipy
|
||||
numpy
|
||||
matplotlib
|
||||
pandas
|
||||
pyqt6
|
||||
qtconsole
|
||||
ipython
|
||||
ipykernel
|
||||
h5py
|
||||
xlrd
|
||||
mpl-scatter-density
|
||||
pvextractor
|
||||
openpyxl
|
||||
echo
|
||||
fast-histogram
|
||||
h5py
|
||||
ipython
|
||||
matplotlib
|
||||
mpl-scatter-density
|
||||
numpy
|
||||
openpyxl
|
||||
pandas
|
||||
scipy
|
||||
setuptools
|
||||
shapely
|
||||
xlrd
|
||||
];
|
||||
|
||||
dontConfigure = true;
|
||||
|
@ -74,14 +71,12 @@ buildPythonPackage rec {
|
|||
# qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even though it was found.
|
||||
doCheck = false;
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytest
|
||||
pytest-flakes
|
||||
pytest-cov
|
||||
];
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [ "glue" ];
|
||||
|
||||
dontWrapQtApps = true;
|
||||
|
||||
preFixup = ''
|
||||
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue