mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:14:10 +00:00
pythonPackages.notedown: init at 1.5.1
This commit is contained in:
parent
d33c0dacf7
commit
8e998bf80e
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 ];
|
||||
};
|
||||
}
|
@ -3252,6 +3252,8 @@ in {
|
||||
|
||||
notebook = callPackage ../development/python-modules/notebook { };
|
||||
|
||||
notedown = callPackage ../development/python-modules/notedown { };
|
||||
|
||||
notify = callPackage ../development/python-modules/notify { };
|
||||
|
||||
notify2 = callPackage ../development/python-modules/notify2 {};
|
||||
|
Loading…
Reference in New Issue
Block a user