Unverified Commit 725f0f39 authored by Nikolay Korotkiy's avatar Nikolay Korotkiy
Browse files

python3Packages.pentapy: init at 1.4.1

parent a7e3137d
Loading
Loading
Loading
Loading
+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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };