Merge pull request #246804 from natsukium/jupytext/update

python310Packages.jupytext: 1.14.1 -> 1.15.0
This commit is contained in:
Timo Kaufmann 2023-08-09 17:04:34 +02:00 committed by GitHub
commit 6aee59be4f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
};
}