pythonPackages.sasmodels: fix build (#40381)
* The revision checksum changed, so it's safer to pin the package against an explicit `git` tag (https://github.com/NixOS/nixpkgs/pull/40381#issuecomment-388484695) * Repaired `checkPhase` to run `py.test` properly on Python {2,3} * Bumped to latest revision (unstable-2018-04-27) as it supports the entire test suite properly.
This commit is contained in:
parent
ef102bd43a
commit
ea8a62add9
@ -1,20 +1,26 @@
|
|||||||
{lib, fetchgit, buildPythonPackage, pytest, numpy, scipy, matplotlib, docutils}:
|
{ lib, fetchFromGitHub, buildPythonPackage, pytest, numpy, scipy, matplotlib, docutils
|
||||||
|
, pyopencl, opencl-headers
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "sasmodels";
|
pname = "sasmodels-unstable";
|
||||||
version = "0.96";
|
version = "2018-04-27";
|
||||||
|
|
||||||
buildInputs = [pytest];
|
src = fetchFromGitHub {
|
||||||
propagatedBuildInputs = [docutils matplotlib numpy scipy];
|
owner = "SasView";
|
||||||
|
repo = "sasmodels";
|
||||||
preCheck = ''export HOME=$(mktemp -d)'';
|
rev = "33969b656596e8b6cc8ce934cd1f8062f7b11cf2";
|
||||||
|
sha256 = "00rvhafg08qvx0k9mzn1ppdkc9i5yfn2gr3hidrf416srf8zgb85";
|
||||||
src = fetchgit {
|
|
||||||
url = "https://github.com/SasView/sasmodels.git";
|
|
||||||
rev = "v${version}";
|
|
||||||
sha256 = "11qaaqdc23qzb75zs48fkypksmcb332vl0pkjqr5bijxxymgm7nw";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
buildInputs = [ opencl-headers ];
|
||||||
|
checkInputs = [ pytest ];
|
||||||
|
propagatedBuildInputs = [ docutils matplotlib numpy scipy pyopencl ];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
HOME=$(mktemp -d) py.test -c ./pytest.ini
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Library of small angle scattering models";
|
description = "Library of small angle scattering models";
|
||||||
homepage = http://sasview.org;
|
homepage = http://sasview.org;
|
||||||
|
Loading…
Reference in New Issue
Block a user