Merge pull request #164831 from r-ryantm/auto-update/python3.10-sasmodels
python310Packages.sasmodels: 1.0.5 -> 1.0.6
This commit is contained in:
commit
66b7cd808c
1 changed files with 29 additions and 9 deletions
|
@ -8,33 +8,53 @@
|
||||||
, docutils
|
, docutils
|
||||||
, pyopencl
|
, pyopencl
|
||||||
, opencl-headers
|
, opencl-headers
|
||||||
|
, pythonOlder
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "sasmodels";
|
pname = "sasmodels";
|
||||||
version = "1.0.5";
|
version = "1.0.6";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "SasView";
|
owner = "SasView";
|
||||||
repo = "sasmodels";
|
repo = "sasmodels";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "19h30kcgpvg1qirzjm0vhgvp1yn60ivlglc8a8n2b4d9fp0acfyd";
|
hash = "sha256-RVEPu07gp1ScciJQmjizyELcOD2WSjIlxunj5LnmXdw=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ opencl-headers ];
|
buildInputs = [
|
||||||
|
opencl-headers
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
docutils
|
||||||
|
matplotlib
|
||||||
|
numpy
|
||||||
|
scipy
|
||||||
|
pyopencl
|
||||||
|
];
|
||||||
|
|
||||||
# Note: the 1.0.5 release should be compatible with pytest6, so this can
|
# Note: the 1.0.5 release should be compatible with pytest6, so this can
|
||||||
# be set back to 'pytest' at that point
|
# be set back to 'pytest' at that point
|
||||||
checkInputs = [ pytest ];
|
checkInputs = [
|
||||||
propagatedBuildInputs = [ docutils matplotlib numpy scipy pyopencl ];
|
pytest
|
||||||
|
];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
HOME=$(mktemp -d) py.test -c ./pytest.ini
|
HOME=$(mktemp -d) py.test -c ./pytest.ini
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
pythonImportsCheck = [
|
||||||
|
"sasmodels"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
description = "Library of small angle scattering models";
|
description = "Library of small angle scattering models";
|
||||||
homepage = "http://sasview.org";
|
homepage = "https://github.com/SasView/sasmodels";
|
||||||
license = lib.licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = with lib.maintainers; [ rprospero ];
|
maintainers = with maintainers; [ rprospero ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue