Unverified Commit 6aee59be authored by Timo Kaufmann's avatar Timo Kaufmann Committed by GitHub
Browse files

Merge pull request #246804 from natsukium/jupytext/update

python310Packages.jupytext: 1.14.1 -> 1.15.0
parents 25cfddf2 c2ccd305
Loading
Loading
Loading
Loading
+4 −11
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
, stdenv
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, gitpython
, isort
, jupyter-client
@@ -20,7 +19,7 @@

buildPythonPackage rec {
  pname = "jupytext";
  version = "1.14.1";
  version = "1.15.0";
  format = "pyproject";

  disabled = pythonOlder "3.6";
@@ -29,16 +28,9 @@ buildPythonPackage rec {
    owner = "mwouts";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-DDF4aTLkhEl4xViYh/E0/y6swcwZ9KbeS0qKm+HdFz8=";
    hash = "sha256-M4BoST18sf1C1lwhFkp4a0B3fc0VKerwuVEIfwkD7i0=";
  };

  patches = [
    (fetchpatch {
      url = "https://github.com/mwouts/jupytext/commit/be9b65b03600227b737b5f10ea259a7cdb762b76.patch";
      hash = "sha256-3klx8I+T560EVfsKe/FlrSjF6JzdKSCt6uhAW2cSwtc=";
    })
  ];

  buildInputs = [
    jupyter-packaging
    jupyterlab
@@ -85,7 +77,8 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Jupyter notebooks as Markdown documents, Julia, Python or R scripts";
    homepage = "https://github.com/mwouts/jupytext";
    changelog = "https://github.com/mwouts/jupytext/releases/tag/${src.rev}";
    license = licenses.mit;
    maintainers = with maintainers; [ timokau ];
    maintainers = teams.jupyter.members;
  };
}