mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
python3Packages.glueviz: init at 0.14.1
This commit is contained in:
parent
decee17779
commit
6dc88abad3
87
pkgs/development/python-modules/glueviz/default.nix
Normal file
87
pkgs/development/python-modules/glueviz/default.nix
Normal file
@ -0,0 +1,87 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pythonOlder
|
||||
, dill
|
||||
, astropy
|
||||
, numpy
|
||||
, pandas
|
||||
, qt6
|
||||
, pyqt6
|
||||
, pyqt-builder
|
||||
, qtconsole
|
||||
, setuptools
|
||||
, setuptools-scm
|
||||
, scipy
|
||||
, ipython
|
||||
, ipykernel
|
||||
, h5py
|
||||
, matplotlib
|
||||
, xlrd
|
||||
, mpl-scatter-density
|
||||
, pvextractor
|
||||
, openpyxl
|
||||
, echo
|
||||
, pytest
|
||||
, pytest-flakes
|
||||
, pytest-cov
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "glueviz";
|
||||
version = "1.14.1";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "glue-viz";
|
||||
repo = "glue";
|
||||
rev = "refs/tags/v${version}";
|
||||
sha256 = "sha256-pHUcvyDziE7l0foEz7cygMuAwggnIWzsQy9SFZCDkXA=";
|
||||
};
|
||||
|
||||
buildInputs = [ pyqt-builder ];
|
||||
nativeBuildInputs = [ setuptools setuptools-scm qt6.wrapQtAppsHook ];
|
||||
propagatedBuildInputs = [
|
||||
astropy
|
||||
dill
|
||||
setuptools
|
||||
scipy
|
||||
numpy
|
||||
matplotlib
|
||||
pandas
|
||||
pyqt6
|
||||
qtconsole
|
||||
ipython
|
||||
ipykernel
|
||||
h5py
|
||||
xlrd
|
||||
mpl-scatter-density
|
||||
pvextractor
|
||||
openpyxl
|
||||
echo
|
||||
];
|
||||
|
||||
dontConfigure = true;
|
||||
|
||||
env.SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
||||
|
||||
# collecting ... qt.qpa.xcb: could not connect to display
|
||||
# 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 ];
|
||||
|
||||
pythonImportsCheck = [ "glue" ];
|
||||
|
||||
preFixup = ''
|
||||
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://glueviz.org";
|
||||
description = "Linked Data Visualizations Across Multiple Files";
|
||||
license = licenses.bsd3; # https://github.com/glue-viz/glue/blob/main/LICENSE
|
||||
maintainers = with maintainers; [ ifurther ];
|
||||
};
|
||||
}
|
@ -4500,6 +4500,8 @@ self: super: with self; {
|
||||
|
||||
glom = callPackage ../development/python-modules/glom { };
|
||||
|
||||
glueviz = callPackage ../development/python-modules/glueviz { };
|
||||
|
||||
glymur = callPackage ../development/python-modules/glymur { };
|
||||
|
||||
gmpy2 = callPackage ../development/python-modules/gmpy2 { };
|
||||
|
Loading…
Reference in New Issue
Block a user