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

42 lines
839 B
Nix
Raw Normal View History

2017-06-02 17:04:03 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, glibcLocales
, ipython_genutils
, traitlets
, testpath
, jsonschema
, jupyter_core
}:
buildPythonPackage rec {
pname = "nbformat";
version = "5.1.3";
2017-06-02 17:04:03 +02:00
src = fetchPypi {
inherit pname version;
sha256 = "b516788ad70771c6250977c1374fcca6edebe6126fd2adb5a69aa5c2356fd1c8";
2017-06-02 17:04:03 +02:00
};
2017-10-23 13:49:03 +02:00
LC_ALL="en_US.utf8";
2017-06-02 17:04:03 +02:00
checkInputs = [ pytest glibcLocales ];
propagatedBuildInputs = [ ipython_genutils traitlets testpath jsonschema jupyter_core ];
2017-10-23 13:49:03 +02:00
preCheck = ''
mkdir tmp
export HOME=tmp
'';
2017-06-02 17:04:03 +02:00
2019-09-14 21:15:20 +02:00
# Some of the tests use localhost networking.
__darwinAllowLocalNetworking = true;
2017-06-02 17:04:03 +02:00
meta = {
description = "The Jupyter Notebook format";
homepage = "https://jupyter.org/";
2017-06-02 17:04:03 +02:00
license = lib.licenses.bsd3;
2017-10-23 13:49:03 +02:00
maintainers = with lib.maintainers; [ fridh globin ];
2017-06-02 17:04:03 +02:00
};
}