Merge pull request #193236 from r-ryantm/auto-update/python310Packages.emcee

python310Packages.emcee: 3.1.2 -> 3.1.3
This commit is contained in:
Fabian Affolter 2022-09-28 02:21:50 +02:00 committed by GitHub
commit b208642ac2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";