lol
0
fork

Configure Feed

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

pythonPackages.f90nml: init at 1.4.1

+30
+28
pkgs/development/python-modules/f90nml/default.nix
··· 1 + { lib, buildPythonPackage, fetchFromGitHub, python, setuptools-scm }: 2 + 3 + buildPythonPackage rec { 4 + pname = "f90nml"; 5 + version = "1.4.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "marshallward"; 9 + repo = pname; 10 + rev = "v" + version; 11 + sha256 = "sha256-nSpVBAS2VvXIQwYK/qVVzEc13bicAQ+ScXpO4Rn2O+8="; 12 + }; 13 + 14 + nativeBuildInputs = [ setuptools-scm ]; 15 + 16 + checkPhase = '' 17 + ${python.interpreter} setup.py test 18 + ''; 19 + 20 + pythonImportsCheck = [ "f90nml" ]; 21 + 22 + meta = with lib; { 23 + description = "Python module for working with Fortran Namelists"; 24 + homepage = "https://f90nml.readthedocs.io"; 25 + license = licenses.asl20; 26 + maintainers = with maintainers; [ loicreynier ]; 27 + }; 28 + }
+2
pkgs/top-level/python-packages.nix
··· 2873 2873 2874 2874 ezdxf = callPackage ../development/python-modules/ezdxf { }; 2875 2875 2876 + f90nml = callPackage ../development/python-modules/f90nml { }; 2877 + 2876 2878 Fabric = callPackage ../development/python-modules/Fabric { }; 2877 2879 2878 2880 faadelays = callPackage ../development/python-modules/faadelays { };