sasview: 4.2.0 -> 5.0.4

main
Robert Schütz 2 years ago committed by Robert Schütz
parent 8d28f1046b
commit a13fe11c59
  1. 89
      pkgs/applications/science/misc/sasview/default.nix
  2. 22
      pkgs/applications/science/misc/sasview/local_config.patch
  3. 13
      pkgs/applications/science/misc/sasview/pyparsing-fix.patch
  4. 2
      pkgs/top-level/all-packages.nix

@ -1,70 +1,57 @@
{ lib, fetchFromGitHub, gcc, python2 }:
{ lib
, python3
, fetchFromGitHub
, which
, wrapQtAppsHook
}:
python3.pkgs.buildPythonApplication rec {
pname = "sasview";
version = "5.0.4";
let
xhtml2pdf = import ./xhtml2pdf.nix {
inherit lib;
fetchPypi = python2.pkgs.fetchPypi;
buildPythonPackage = python2.pkgs.buildPythonPackage;
html5lib = python2.pkgs.html5lib;
httplib2 = python2.pkgs.httplib2;
nose = python2.pkgs.nose;
pillow = python2.pkgs.pillow;
pypdf2 = python2.pkgs.pypdf2;
reportlab = python2.pkgs.reportlab;
src = fetchFromGitHub {
owner = "SasView";
repo = "sasview";
rev = "v${version}";
hash = "sha256-TjcchqA6GCvkr59ZgDuGglan2RxLp+aMjJk28XhvoiY=";
};
in
python2.pkgs.buildPythonApplication rec {
pname = "sasview";
version = "4.2.0";
checkInputs = with python2.pkgs; [
pytest
unittest-xml-reporting
nativeBuildInputs = [
python3.pkgs.pyqt5
wrapQtAppsHook
];
checkPhase = ''
# fix the following error:
# imported module 'sas.sascalc.data_util.uncertainty' has this __file__ attribute:
# /build/source/build/lib.linux-x86_64-2.7/sas/sascalc/data_util/uncertainty.py
# which is not the same as the test file we want to collect:
# /build/source/dist/tmpbuild/sasview/sas/sascalc/data_util/uncertainty.py
rm -r dist/tmpbuild
HOME=$(mktemp -d) py.test
'';
propagatedBuildInputs = with python2.pkgs; [
propagatedBuildInputs = with python3.pkgs; [
bumps
gcc
h5py
libxslt
lxml
matplotlib
numpy
pyparsing
periodictable
pillow
pylint
pyopencl
reportlab
pyparsing
pyqt5
qt5reactor
sasmodels
scipy
six
sphinx
wxPython
setuptools
xhtml2pdf
];
src = fetchFromGitHub {
owner = "SasView";
repo = "sasview";
rev = "v${version}";
sha256 = "0k3486h46k6406h0vla8h68fd78wh3dcaq5w6f12jh6g4cjxv9qa";
};
postBuild = ''
${python3.interpreter} src/sas/qtgui/convertUI.py
'';
dontWrapQtApps = true;
makeWrapperArgs = [
"\${qtWrapperArgs[@]}"
];
checkInputs = with python3.pkgs; [
pytestCheckHook
unittest-xml-reporting
];
patches = [ ./pyparsing-fix.patch ./local_config.patch ];
pytestFlagsArray = [ "test" ];
meta = with lib; {
homepage = "https://www.sasview.org";

@ -1,22 +0,0 @@
diff --git a/src/sas/_config.py b/src/sas/_config.py
index ece08fd4c..926768593 100644
--- a/src/sas/_config.py
+++ b/src/sas/_config.py
@@ -67,8 +67,8 @@ def load_local_config(app_dir):
logger.info("GuiManager loaded %s", path)
return module
except Exception as exc:
- logger.critical("Error loading %s: %s", path, exc)
- sys.exit()
+ import sas.sasview.local_config
+ return sas.sasview.local_config
def make_custom_config_path(user_dir):
"""
@@ -116,4 +116,4 @@ def load_custom_config(path):
from sas.sasview import custom_config
logger.info("GuiManager custom_config defaults to sas.sasview.custom_config")
- return custom_config
\ No newline at end of file
+ return custom_config

@ -1,13 +0,0 @@
diff --git a/setup.py b/setup.py
index 866ab7e36..78727b276 100755
--- a/setup.py
+++ b/setup.py
@@ -401,7 +401,7 @@ package_data['sas.sasview'] = ['images/*',
packages.append("sas.sasview")
required = [
- 'bumps>=0.7.5.9', 'periodictable>=1.5.0', 'pyparsing>=2.0.0',
+ 'bumps>=0.7.5.9', 'periodictable>=1.5.0',
# 'lxml>=2.2.2',
'lxml', 'h5py',

@ -9505,7 +9505,7 @@ with pkgs;
sasquatch = callPackage ../tools/filesystems/sasquatch { };
sasview = callPackage ../applications/science/misc/sasview {};
sasview = libsForQt5.callPackage ../applications/science/misc/sasview {};
scallion = callPackage ../tools/security/scallion { };

Loading…
Cancel
Save