Loading pkgs/development/python-modules/nbdev/default.nix 0 → 100644 +36 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchPypi , fastprogress , fastcore , asttokens , astunparse , watchdog , execnb , ghapi , pythonOlder }: buildPythonPackage rec { pname = "nbdev"; version = "2.3.11"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; sha256 = "sha256-ITMCmuAb1lXONbP5MREpk8vfNSztoTEmT87W1o+fbIU="; }; propagatedBuildInputs = [ fastprogress fastcore asttokens astunparse watchdog execnb ghapi ]; # no real tests doCheck = false; pythonImportsCheck = [ "nbdev" ]; meta = with lib; { homepage = "https://github.com/fastai/nbdev"; description = "Create delightful software with Jupyter Notebooks"; license = licenses.asl20; maintainers = with maintainers; [ rxiao ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -6272,6 +6272,8 @@ self: super: with self; { nbconvert = callPackage ../development/python-modules/nbconvert { }; nbdev = callPackage ../development/python-modules/nbdev { }; nbdime = callPackage ../development/python-modules/nbdime { }; nbformat = callPackage ../development/python-modules/nbformat { }; Loading Loading
pkgs/development/python-modules/nbdev/default.nix 0 → 100644 +36 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchPypi , fastprogress , fastcore , asttokens , astunparse , watchdog , execnb , ghapi , pythonOlder }: buildPythonPackage rec { pname = "nbdev"; version = "2.3.11"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; sha256 = "sha256-ITMCmuAb1lXONbP5MREpk8vfNSztoTEmT87W1o+fbIU="; }; propagatedBuildInputs = [ fastprogress fastcore asttokens astunparse watchdog execnb ghapi ]; # no real tests doCheck = false; pythonImportsCheck = [ "nbdev" ]; meta = with lib; { homepage = "https://github.com/fastai/nbdev"; description = "Create delightful software with Jupyter Notebooks"; license = licenses.asl20; maintainers = with maintainers; [ rxiao ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -6272,6 +6272,8 @@ self: super: with self; { nbconvert = callPackage ../development/python-modules/nbconvert { }; nbdev = callPackage ../development/python-modules/nbdev { }; nbdime = callPackage ../development/python-modules/nbdime { }; nbformat = callPackage ../development/python-modules/nbformat { }; Loading