lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

pythonPackages.sphinx-fortran: init at unstable-2022-03-02

Co-authored-by: pbsds <pbsds@hotmail.com>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

+46
+44
pkgs/development/python-modules/sphinx-fortran/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pytestCheckHook 5 + , future 6 + , numpy 7 + , sphinx 8 + , six 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "sphinx-fortran"; 13 + version = "unstable-2022-03-02"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "VACUMM"; 17 + repo = pname; 18 + rev = "394ae990b43ed43fcff8beb048632f5e99794264"; 19 + sha256 = "sha256-IVKu5u9gqs7/9EZrf4ZYd12K6J31u+/B8kk4+8yfohM="; 20 + }; 21 + 22 + propagatedBuildInputs = [ 23 + future 24 + numpy 25 + sphinx 26 + six 27 + ]; 28 + 29 + pythonImportsCheck = [ "sphinxfortran" ]; 30 + 31 + # Tests are failing because reference files are not updated 32 + doCheck = false; 33 + 34 + checkInputs = [ 35 + pytestCheckHook 36 + ]; 37 + 38 + meta = with lib; { 39 + description = "Fortran domain and autodoc extensions to Sphinx"; 40 + homepage = "http://sphinx-fortran.readthedocs.org/"; 41 + license = licenses.cecill21; 42 + maintainers = with maintainers; [ loicreynier ]; 43 + }; 44 + }
+2
pkgs/top-level/python-packages.nix
··· 10004 10004 10005 10005 sphinx-external-toc = callPackage ../development/python-modules/sphinx-external-toc { }; 10006 10006 10007 + sphinx-fortran = callPackage ../development/python-modules/sphinx-fortran { }; 10008 + 10007 10009 sphinx-jupyterbook-latex = callPackage ../development/python-modules/sphinx-jupyterbook-latex { }; 10008 10010 10009 10011 sphinx-multitoc-numbering = callPackage ../development/python-modules/sphinx-multitoc-numbering { };