Loading pkgs/development/python-modules/pentapy/default.nix 0 → 100644 +52 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchFromGitHub, # build-system cython, setuptools, setuptools-scm, # dependencies numpy, # tests pytestCheckHook, }: buildPythonPackage rec { pname = "pentapy"; version = "1.4.1"; pyproject = true; src = fetchFromGitHub { owner = "GeoStat-Framework"; repo = "pentapy"; tag = "v${version}"; hash = "sha256-lw512rZCrwumDunoWFfd0HxCv0HAn/bAmIz8l8VeBP8="; }; build-system = [ cython numpy setuptools setuptools-scm ]; dependencies = [ numpy ]; nativeCheckInputs = [ pytestCheckHook ]; meta = { description = "A Python toolbox for pentadiagonal linear systems"; homepage = "https://github.com/GeoStat-Framework/pentapy"; changelog = "https://github.com/GeoStat-Framework/pentapy/blob/v${version}/CHANGELOG.md"; license = lib.licenses.mit; teams = [ lib.teams.geospatial ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -11800,6 +11800,8 @@ self: super: with self; { pendulum = callPackage ../development/python-modules/pendulum { }; pentapy = callPackage ../development/python-modules/pentapy { }; pep440 = callPackage ../development/python-modules/pep440 { }; pep517 = callPackage ../development/python-modules/pep517 { }; Loading Loading
pkgs/development/python-modules/pentapy/default.nix 0 → 100644 +52 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchFromGitHub, # build-system cython, setuptools, setuptools-scm, # dependencies numpy, # tests pytestCheckHook, }: buildPythonPackage rec { pname = "pentapy"; version = "1.4.1"; pyproject = true; src = fetchFromGitHub { owner = "GeoStat-Framework"; repo = "pentapy"; tag = "v${version}"; hash = "sha256-lw512rZCrwumDunoWFfd0HxCv0HAn/bAmIz8l8VeBP8="; }; build-system = [ cython numpy setuptools setuptools-scm ]; dependencies = [ numpy ]; nativeCheckInputs = [ pytestCheckHook ]; meta = { description = "A Python toolbox for pentadiagonal linear systems"; homepage = "https://github.com/GeoStat-Framework/pentapy"; changelog = "https://github.com/GeoStat-Framework/pentapy/blob/v${version}/CHANGELOG.md"; license = lib.licenses.mit; teams = [ lib.teams.geospatial ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -11800,6 +11800,8 @@ self: super: with self; { pendulum = callPackage ../development/python-modules/pendulum { }; pentapy = callPackage ../development/python-modules/pentapy { }; pep440 = callPackage ../development/python-modules/pep440 { }; pep517 = callPackage ../development/python-modules/pep517 { }; Loading