From f7f9dbeddee4abe50fbae1e1869778436dc4a0d0 Mon Sep 17 00:00:00 2001 From: Kirill Radzikhovskyy Date: Sun, 5 Mar 2023 17:28:31 +1100 Subject: [PATCH 1/3] python3Packages.fastai: 2.7.10 -> 2.7.11 --- pkgs/development/python-modules/fastai/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/fastai/default.nix b/pkgs/development/python-modules/fastai/default.nix index dcb0b582ea74..87973d110ec4 100644 --- a/pkgs/development/python-modules/fastai/default.nix +++ b/pkgs/development/python-modules/fastai/default.nix @@ -18,13 +18,13 @@ buildPythonPackage rec { pname = "fastai"; - version = "2.7.10"; + version = "2.7.11"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - sha256 = "sha256-zO9qGFrjpjfvybzZ/qjki3X0VNDrrTtt9CbyL64gA50="; + hash = "sha256-xrOhdmrCWvsPtCFDsnUxiSd7ox+Pgpmte5LyNPCHRYU="; }; propagatedBuildInputs = [ From d55544cc681bd9695e61ee28d9f6f95e8fc9b6ec Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 5 Mar 2023 10:02:44 +0100 Subject: [PATCH 2/3] python3Packages.fastai: add changelog to meta --- pkgs/development/python-modules/fastai/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/fastai/default.nix b/pkgs/development/python-modules/fastai/default.nix index 87973d110ec4..ae7a6d0a4e12 100644 --- a/pkgs/development/python-modules/fastai/default.nix +++ b/pkgs/development/python-modules/fastai/default.nix @@ -47,6 +47,7 @@ buildPythonPackage rec { meta = with lib; { homepage = "https://github.com/fastai/fastai"; description = "The fastai deep learning library"; + changelog = "https://github.com/fastai/fastai/blob/${version}/CHANGELOG.md"; license = licenses.asl20; maintainers = with maintainers; [ rxiao ]; }; From cac0bacd147779a23ecefa09846ff6f633a8e141 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 5 Mar 2023 10:04:35 +0100 Subject: [PATCH 3/3] python310Packages.fastai: update disabled --- pkgs/development/python-modules/fastai/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/fastai/default.nix b/pkgs/development/python-modules/fastai/default.nix index ae7a6d0a4e12..4a4d9a16d107 100644 --- a/pkgs/development/python-modules/fastai/default.nix +++ b/pkgs/development/python-modules/fastai/default.nix @@ -20,7 +20,8 @@ buildPythonPackage rec { pname = "fastai"; version = "2.7.11"; format = "setuptools"; - disabled = pythonOlder "3.6"; + + disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version;