nixpkgs/pkgs/development/python-modules/nbconflux/default.nix

29 lines
744 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchFromGitHub, nbconvert, pytest, requests, responses }:
buildPythonPackage rec {
pname = "nbconflux";
version = "0.7.0";
2020-08-25 03:07:09 +01:00
src = fetchFromGitHub {
owner = "Valassis-Digital-Media";
repo = "nbconflux";
rev = version;
sha256 = "1708qkb275d6f7b4b5zmqx3i0jh56nrx2n9rwwp5nbaah5p2wwlh";
};
2020-08-25 03:07:09 +01:00
propagatedBuildInputs = [ nbconvert requests ];
2020-08-25 03:07:09 +01:00
checkInputs = [ pytest responses ];
2020-08-25 03:07:09 +01:00
checkPhase = ''
pytest tests
'';
2020-08-25 03:07:09 +01:00
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 ];
};
}