python310Packages.pymc: 5.0.1 -> 5.0.2; unbreak

This commit is contained in:
Ben Darwin
2023-01-25 23:19:23 -05:00
parent b54fce7225
commit 089f0dd9e2
@@ -1,6 +1,4 @@
{ lib
, aeppl
, aesara
, arviz
, buildPythonPackage
, cachetools
@@ -8,38 +6,33 @@
, fastprogress
, fetchFromGitHub
, numpy
, pytensor
, pythonOlder
, pythonRelaxDepsHook
, scipy
, typing-extensions
}:
buildPythonPackage rec {
pname = "pymc";
version = "5.0.1";
version = "5.0.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "pymc-devs";
repo = "pymc";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-uWvzWbZyRRE8L9X9+azmN+1JYahwwNSYCk2fQ/C8Yi0=";
hash = "sha256-ffNWSSzoRLFmYzN9sm5Z1j6WtEoFzGkCQxpBC0NlpRc=";
};
nativeBuildInputs = [
pythonRelaxDepsHook
];
propagatedBuildInputs = [
aeppl
aesara
arviz
cachetools
cloudpickle
fastprogress
numpy
pytensor
scipy
typing-extensions
];
@@ -49,11 +42,6 @@ buildPythonPackage rec {
--replace ', "pytest-cov"' ""
'';
pythonRelaxDeps = [
"aesara"
"aeppl"
];
# The test suite is computationally intensive and test failures are not
# indicative for package usability hence tests are disabled by default.
doCheck = false;