pythonPackages.nbconflux: init at 0.7.0
This commit is contained in:
parent
8deaccc909
commit
a8f3903ba5
28
pkgs/development/python-modules/nbconflux/default.nix
Normal file
28
pkgs/development/python-modules/nbconflux/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchFromGitHub, nbconvert, pytest, requests, responses }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "nbconflux";
|
||||||
|
version = "0.7.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Valassis-Digital-Media";
|
||||||
|
repo = "nbconflux";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1708qkb275d6f7b4b5zmqx3i0jh56nrx2n9rwwp5nbaah5p2wwlh";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ nbconvert requests ];
|
||||||
|
|
||||||
|
checkInputs = [ pytest responses ];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
pytest tests
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Converts Jupyter Notebooks to Atlassian Confluence (R) pages using nbconvert";
|
||||||
|
homepage = "https://github.com/Valassis-Digital-Media/nbconflux";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = [ maintainers.arnoldfarkas ];
|
||||||
|
};
|
||||||
|
}
|
@ -4343,6 +4343,8 @@ in {
|
|||||||
|
|
||||||
names = callPackage ../development/python-modules/names { };
|
names = callPackage ../development/python-modules/names { };
|
||||||
|
|
||||||
|
nbconflux = callPackage ../development/python-modules/nbconflux { };
|
||||||
|
|
||||||
nbconvert = callPackage ../development/python-modules/nbconvert { };
|
nbconvert = callPackage ../development/python-modules/nbconvert { };
|
||||||
|
|
||||||
nbformat = if isPy3k then
|
nbformat = if isPy3k then
|
||||||
|
Loading…
Reference in New Issue
Block a user