evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / notedown / default.nix
blob72666397f044ce48668ce71872da3e36a50855f5
2   buildPythonPackage,
3   fetchPypi,
4   lib,
5   nbconvert,
6   nbformat,
7   notebook,
8   pandoc-attributes,
9   six,
12 buildPythonPackage rec {
13   pname = "notedown";
14   version = "1.5.1";
15   format = "setuptools";
17   src = fetchPypi {
18     inherit pname version;
19     sha256 = "36e033ebbbe5aca0fab031ffaf3611d5bc5c50237df68ff81bb95f8be353a1ee";
20   };
22   propagatedBuildInputs = [
23     notebook
24     nbconvert
25     nbformat
26     pandoc-attributes
27     six
28   ];
30   # No tests in pypi source
31   doCheck = false;
33   meta = {
34     homepage = "https://github.com/aaren/notedown";
35     description = "Convert IPython Notebooks to markdown (and back)";
36     mainProgram = "notedown";
37     license = lib.licenses.bsd2;
38     maintainers = with lib.maintainers; [ vcanadi ];
39   };