Merge pull request #309513 from r-ryantm/auto-update/python311Packages.execnb

python311Packages.execnb: 0.1.5 -> 0.1.6
This commit is contained in:
Fabian Affolter 2024-05-06 13:46:16 +02:00 committed by GitHub
commit 49c245472d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,34 +1,45 @@
{ lib
, buildPythonPackage
, fetchPypi
, fastcore
, traitlets
, ipython
, pythonOlder
{
lib,
buildPythonPackage,
fastcore,
fetchPypi,
ipython,
pythonOlder,
setuptools,
traitlets,
}:
buildPythonPackage rec {
pname = "execnb";
version = "0.1.5";
format = "setuptools";
version = "0.1.6";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-nuAp4OMAfA3u3DJyORjFw7y7ZLsLCKEfxSFIXqNh+k0=";
hash = "sha256-KJ2XEHqFY0SxbAiVPWBFO0cyC0EWgGDso8wt7lBLTgU=";
};
propagatedBuildInputs = [ fastcore traitlets ipython ];
build-system = [ setuptools ];
dependencies = [
fastcore
ipython
traitlets
];
# no real tests
doCheck = false;
pythonImportsCheck = [ "execnb" ];
meta = with lib; {
homepage = "https://github.com/fastai/execnb";
description = "Execute a jupyter notebook, fast, without needing jupyter";
mainProgram = "exec_nb";
homepage = "https://github.com/fastai/execnb";
changelog = "https://github.com/fastai/execnb/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ rxiao ];
mainProgram = "exec_nb";
};
}