Commit 3cdf6478 authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files
parent 9b7f2cc3
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@

buildPythonPackage rec {
  pname = "distributed";
  version = "2024.5.0";
  version = "2024.6.0";
  pyproject = true;

  disabled = pythonOlder "3.9";
@@ -35,7 +35,7 @@ buildPythonPackage rec {
    owner = "dask";
    repo = "distributed";
    rev = "refs/tags/${version}";
    hash = "sha256-9W5BpBQHw1ZXCOWiFPeIlMns/Yys1gtdwQ4Lhd7qjK8=";
    hash = "sha256-8TShbpH+DB73G7D4pz8MHC/SPd3RaRttML0S4WaCE4k=";
  };

  postPatch = ''
@@ -76,11 +76,11 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "distributed" ];

  meta = with lib; {
  meta = {
    description = "Distributed computation in Python";
    homepage = "https://distributed.readthedocs.io/";
    changelog = "https://github.com/dask/distributed/blob/${version}/docs/source/changelog.rst";
    license = licenses.bsd3;
    maintainers = with maintainers; [ teh ];
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ teh ];
  };
}