Merge pull request #55284 from vcanadi/notedown
pythonPackages.notedown: init at 1.5.1
This commit is contained in:
37
pkgs/development/python-modules/notedown/default.nix
Normal file
37
pkgs/development/python-modules/notedown/default.nix
Normal file
@@ -0,0 +1,37 @@
|
||||
{ buildPythonPackage
|
||||
, fetchPypi
|
||||
, lib
|
||||
, nbconvert
|
||||
, nbformat
|
||||
, notebook
|
||||
, pandoc-attributes
|
||||
, six
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "notedown";
|
||||
version = "1.5.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "36e033ebbbe5aca0fab031ffaf3611d5bc5c50237df68ff81bb95f8be353a1ee";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
notebook
|
||||
nbconvert
|
||||
nbformat
|
||||
pandoc-attributes
|
||||
six
|
||||
];
|
||||
|
||||
# No tests in pypi source
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/aaren/notedown;
|
||||
description = "Convert IPython Notebooks to markdown (and back)";
|
||||
license = lib.licenses.bsd2;
|
||||
maintainers = with lib.maintainers; [ vcanadi ];
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
{ buildPythonPackage
|
||||
, fetchPypi
|
||||
, lib
|
||||
, pandocfilters
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pandoc-attributes";
|
||||
version = "0.1.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "69221502dac74f5df1317011ce62c85a83eef5da3b71c63b1908e98224304a8c";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pandocfilters
|
||||
];
|
||||
|
||||
# No tests in pypi source
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/aaren/pandoc-attributes;
|
||||
description = "An Attribute class to be used with pandocfilters";
|
||||
license = lib.licenses.bsd2;
|
||||
maintainers = with lib.maintainers; [ vcanadi ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user