My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/papermill/default.nix

74 lines
1.1 KiB

{ lib
, buildPythonPackage
, fetchPypi
, ansiwrap
, click
, future
, pyyaml
, nbformat
, nbconvert
, nbclient
, six
, tqdm
, jupyter-client
, requests
, entrypoints
, tenacity
, futures ? null
, black
, backports_tempfile
, isPy27
, pytest
, pytest-cov
, pytest-mock
}:
buildPythonPackage rec {
pname = "papermill";
version = "2.3.4";
src = fetchPypi {
inherit pname version;
sha256 = "be12d2728989c0ae17b42fcb05b623500004e94b34f56bd153355ccebb84a59a";
};
propagatedBuildInputs = [
ansiwrap
click
future
pyyaml
nbformat
nbconvert
nbclient
six
tqdm
jupyter-client
requests
entrypoints
tenacity
black
] ++ lib.optionals isPy27 [
futures
backports_tempfile
];
checkInputs = [
pytest
pytest-cov
pytest-mock
];
checkPhase = ''
HOME=$(mktemp -d) pytest
'';
# the test suite depends on cloud resources azure/aws
doCheck = false;
meta = with lib; {
description = "Parametrize and run Jupyter and nteract Notebooks";
homepage = "https://github.com/nteract/papermill";
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}