depot/third_party/nixpkgs/pkgs/development/python-modules/nbconflux/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

63 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
nbconvert,
pytestCheckHook,
requests,
responses,
setuptools,
versioneer,
}:
buildPythonPackage rec {
pname = "nbconflux";
version = "0.7.0";
pyproject = true;
src = fetchFromGitHub {
owner = "vericast";
repo = "nbconflux";
rev = "refs/tags/${version}";
hash = "sha256-kHIuboFKLVsu5zlZ0bM1BUoQR8f1l0XWcaaVI9bECJw=";
};
build-system = [
setuptools
versioneer
];
dependencies = [
nbconvert
requests
];
nativeCheckInputs = [
pytestCheckHook
responses
];
patches = [
# The original setup.py file is missing commas in the install_requires list
./setup-py.patch
];
postPatch = ''
# remove vendorized versioneer.py
rm versioneer.py
'';
JUPYTER_PATH = "${nbconvert}/share/jupyter";
disabledTests = [
"test_post_to_confluence"
"test_optional_components"
];
meta = with lib; {
description = "Converts Jupyter Notebooks to Atlassian Confluence (R) pages using nbconvert";
mainProgram = "nbconflux";
homepage = "https://github.com/Valassis-Digital-Media/nbconflux";
license = licenses.bsd3;
maintainers = [ maintainers.arnoldfarkas ];
};
}