python3Packages.nutils: 7.2 -> 7.3

This commit is contained in:
Max Hausch 2023-06-28 16:42:33 +02:00 committed by Simon Hauser
parent 2f6f50e8e7
commit 8a05296acc

View File

@ -5,14 +5,16 @@
, numpy , numpy
, treelog , treelog
, stringly , stringly
, flit-core
, bottombar
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "nutils"; pname = "nutils";
version = "7.2"; version = "7.3";
format = "setuptools"; format = "pyproject";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -20,13 +22,18 @@ buildPythonPackage rec {
owner = "evalf"; owner = "evalf";
repo = "nutils"; repo = "nutils";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-KCvUBE3qbX6v1HahBj4/jjM8ujvFGtWNuH1D+bTHrQ0="; hash = "sha256-3VtQFnR8vihxoIyRkbE1a1Rs8Np3/79PWNKReTBZDg8=";
}; };
nativeBuildInputs = [
flit-core
];
propagatedBuildInputs = [ propagatedBuildInputs = [
numpy numpy
treelog treelog
stringly stringly
bottombar
]; ];
nativeCheckInputs = [ nativeCheckInputs = [
@ -44,9 +51,9 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Numerical Utilities for Finite Element Analysis"; description = "Numerical Utilities for Finite Element Analysis";
changelog = "https://github.com/evalf/nutils/releases/tag/v${version}";
homepage = "https://www.nutils.org/"; homepage = "https://www.nutils.org/";
license = licenses.mit; license = licenses.mit;
broken = stdenv.hostPlatform.isAarch64;
maintainers = with maintainers; [ Scriptkiddi ]; maintainers = with maintainers; [ Scriptkiddi ];
}; };
} }