Unverified Commit c587c442 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.nbdev: 2.4.14 -> 3.0.10 (#487102)

parents 16ad1b70 d69e2c49
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -14,14 +14,14 @@
  pyyaml,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "nbdev";
  version = "2.4.14";
  version = "3.0.10";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-zXUbUFf08IncbDO6sHiZP6KFvhF3d+GsFLPp2EuAW3g=";
    inherit (finalAttrs) pname version;
    hash = "sha256-5NPOctZ68qS7ETEr/zwRY9Q66gjVa3F7gyc7cssyI4A=";
  };

  pythonRelaxDeps = [ "ipywidgets" ];
@@ -50,8 +50,8 @@ buildPythonPackage rec {
  meta = {
    homepage = "https://github.com/fastai/nbdev";
    description = "Create delightful software with Jupyter Notebooks";
    changelog = "https://github.com/fastai/nbdev/blob/${version}/CHANGELOG.md";
    changelog = "https://github.com/fastai/nbdev/blob/${finalAttrs.version}/CHANGELOG.md";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ rxiao ];
  };
}
})