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