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

42 lines
893 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, isPy27
, mock
, nbformat
, pytest
, pyyaml
2020-11-05 23:37:49 +00:00
, toml
}:
buildPythonPackage rec {
pname = "jupytext";
2020-08-16 17:31:06 +00:00
version = "1.5.2";
src = fetchPypi {
inherit pname version;
2020-08-16 17:31:06 +00:00
sha256 = "1cebc9f5975b4c08db3de6d7d61b35f8c33a24cf2c8c04eee7b8a7aab8ddc39b";
};
propagatedBuildInputs = [
pyyaml
nbformat
2020-11-05 23:37:49 +00:00
toml
] ++ lib.optionals isPy27 [ mock ]; # why they put it in install_requires, who knows
checkInputs = [
pytest
];
# requires test notebooks which are not shipped with the pypi release
# also, pypi no longer includes tests
doCheck = false;
checkPhase = ''
pytest
'';
meta = with lib; {
description = "Jupyter notebooks as Markdown documents, Julia, Python or R scripts";
homepage = "https://github.com/mwouts/jupytext";
license = licenses.mit;
maintainers = with maintainers; [ timokau ];
};
}