Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / notedown / default.nix
blob8ecbf1f5afab32294edfc2e083ce046ce6b48828
1 { buildPythonPackage
2 , fetchPypi
3 , lib
4 , nbconvert
5 , nbformat
6 , notebook
7 , pandoc-attributes
8 , six
9 }:
11 buildPythonPackage rec {
12   pname = "notedown";
13   version = "1.5.1";
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "36e033ebbbe5aca0fab031ffaf3611d5bc5c50237df68ff81bb95f8be353a1ee";
18   };
20   propagatedBuildInputs = [
21     notebook
22     nbconvert
23     nbformat
24     pandoc-attributes
25     six
26   ];
28   # No tests in pypi source
29   doCheck = false;
31   meta = {
32     homepage = "https://github.com/aaren/notedown";
33     description = "Convert IPython Notebooks to markdown (and back)";
34     license = lib.licenses.bsd2;
35     maintainers = with lib.maintainers; [ vcanadi ];
36   };