Merge pull request #245625 from r-ryantm/auto-update/python310Packages.hist

python310Packages.hist: 2.6.3 -> 2.7.1

authored by Fabian Affolter and committed by GitHub c3462e2d 52be9031

+7 -3
+7 -3
pkgs/development/python-modules/hist/default.nix
··· 8 8 , numpy 9 9 , pytestCheckHook 10 10 , pytest-mpl 11 + , pythonOlder 11 12 }: 12 13 13 14 buildPythonPackage rec { 14 15 pname = "hist"; 15 - version = "2.6.3"; 16 + version = "2.7.1"; 16 17 format = "pyproject"; 17 18 19 + disabled = pythonOlder "3.7"; 20 + 18 21 src = fetchPypi { 19 22 inherit pname version; 20 - sha256 = "dede097733d50b273af9f67386e6dcccaab77e900ae702e1a9408a856e217ce9"; 23 + hash = "sha256-/74xTCvQPDQrnxaNznFa2PNigesjFyoAlwiCqTRP6Yg="; 21 24 }; 22 25 23 26 buildInputs = [ ··· 38 41 39 42 meta = with lib; { 40 43 description = "Histogramming for analysis powered by boost-histogram"; 41 - homepage = "https://hist.readthedocs.io/en/latest/"; 44 + homepage = "https://hist.readthedocs.io/"; 45 + changelog = "https://github.com/scikit-hep/hist/releases/tag/v${version}"; 42 46 license = licenses.bsd3; 43 47 maintainers = with maintainers; [ veprbl ]; 44 48 };