python311Packages.pythran: 0.13.1 -> 0.14.0

https://github.com/serge-sans-paille/pythran/compare/0.13.1...0.14.0
This commit is contained in:
Martin Weinelt 2023-12-05 03:56:02 +01:00
parent 57c8d87e96
commit a40db7b124
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -2,14 +2,21 @@
, python
, buildPythonPackage
, fetchFromGitHub
, isPy3k
, substituteAll
# build-system
, setuptools
# native dependencies
, openmp
, xsimd
# dependencies
, ply
, gast
, numpy
, beniget
, xsimd
, isPy3k
, substituteAll
}:
let
@ -17,14 +24,14 @@ let
in buildPythonPackage rec {
pname = "pythran";
version = "0.13.1";
format = "setuptools";
version = "0.14.0";
pyproject = true;
src = fetchFromGitHub {
owner = "serge-sans-paille";
repo = "pythran";
rev = version;
hash = "sha256-baDrReJgQXbaKA8KNhHiFjr0X34yb8WK/nUJmiM9EZs=";
hash = "sha256-in0ty0aBAIx7Is13hjiHZGS8eKbhxb6TL3bENzfx5vQ=";
};
patches = [
@ -41,6 +48,10 @@ in buildPythonPackage rec {
ln -s '${lib.getDev xsimd}'/include/xsimd third_party/
'';
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
ply
gast