depot/third_party/nixpkgs/pkgs/development/python-modules/sasmodels/default.nix
Default email 841d9c7fc1 Project import generated by Copybara.
GitOrigin-RevId: 3a8d7958a610cd3fec3a6f424480f91a1b259185
2021-06-29 00:13:55 +01:00

40 lines
903 B
Nix

{ lib
, fetchFromGitHub
, buildPythonPackage
, pytest_5
, numpy
, scipy
, matplotlib
, docutils
, pyopencl
, opencl-headers
}:
buildPythonPackage rec {
pname = "sasmodels";
version = "1.0.5";
src = fetchFromGitHub {
owner = "SasView";
repo = "sasmodels";
rev = "v${version}";
sha256 = "19h30kcgpvg1qirzjm0vhgvp1yn60ivlglc8a8n2b4d9fp0acfyd";
};
buildInputs = [ opencl-headers ];
# Note: the 1.0.5 release should be compatible with pytest6, so this can
# be set back to 'pytest' at that point
checkInputs = [ pytest_5 ];
propagatedBuildInputs = [ docutils matplotlib numpy scipy pyopencl ];
checkPhase = ''
HOME=$(mktemp -d) py.test -c ./pytest.ini
'';
meta = {
description = "Library of small angle scattering models";
homepage = "http://sasview.org";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ rprospero ];
};
}