Skip to content

Commit

Permalink
python312Packages.pymc: 5.16.2 -> 5.17.0 (#345874)
Browse files Browse the repository at this point in the history
  • Loading branch information
pbsds authored Oct 2, 2024
2 parents be18faf + e2f2f67 commit abcb614
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions pkgs/development/python-modules/pymc/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,

# build-system
setuptools,
versioneer,

# dependencies
arviz,
Expand All @@ -22,24 +22,25 @@

buildPythonPackage rec {
pname = "pymc";
version = "5.16.2";
version = "5.17.0";
pyproject = true;

disabled = pythonOlder "3.10";

src = fetchFromGitHub {
owner = "pymc-devs";
repo = "pymc";
rev = "refs/tags/v${version}";
hash = "sha256-vOU5P45AJPULGWj9lscZKP3JqfSpkPDnq1Fyq9lIawc=";
hash = "sha256-JaMN+M416oRzErzHWlnp4GsvxXWOuZPfXW/LsZjx+fY=";
};

postPatch = ''
substituteInPlace setup.py \
--replace-fail ', "pytest-cov"' ""
'';

build-system = [ setuptools ];
build-system = [
setuptools
versioneer
];

dependencies = [
arviz
Expand Down

0 comments on commit abcb614

Please sign in to comment.