11 buildPythonPackage rec {
14 format = "setuptools";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
21 rev = "refs/tags/v${version}";
22 hash = "sha256-JVZK3kvDwWENho0OxZ9OxATcm3XpGmX+e7alPclRsHY=";
25 nativeBuildInputs = [ setuptools-scm ];
27 propagatedBuildInputs = [ numpy ];
29 nativeCheckInputs = [ pytestCheckHook ];
31 pythonImportsCheck = [ "emcee" ];
34 description = "Kick ass affine-invariant ensemble MCMC sampling";
35 homepage = "https://emcee.readthedocs.io/";
36 changelog = "https://github.com/dfm/emcee/releases/tag/v${version}";
37 license = licenses.mit;