Merge pull request #193236 from r-ryantm/auto-update/python310Packages.emcee
python310Packages.emcee: 3.1.2 -> 3.1.3
This commit is contained in:
commit
b208642ac2
1 changed files with 9 additions and 3 deletions
|
@ -4,17 +4,21 @@
|
||||||
, numpy
|
, numpy
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, setuptools-scm
|
, setuptools-scm
|
||||||
|
, pythonOlder
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "emcee";
|
pname = "emcee";
|
||||||
version = "3.1.2";
|
version = "3.1.3";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "dfm";
|
owner = "dfm";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
sha256 = "sha256-MguhnLLo1zeNuMca8vWpxwysh9YJDD+IzvGQDbScK2M=";
|
hash = "sha256-HAuwWFNL63BlvHomQx+hWw4et7kRYd3zhH2FAj632Lg=";
|
||||||
};
|
};
|
||||||
|
|
||||||
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
||||||
|
@ -31,7 +35,9 @@ buildPythonPackage rec {
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [ "emcee" ];
|
pythonImportsCheck = [
|
||||||
|
"emcee"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Kick ass affine-invariant ensemble MCMC sampling";
|
description = "Kick ass affine-invariant ensemble MCMC sampling";
|
||||||
|
|
Loading…
Reference in a new issue