Merge pull request #311154 from TomaSajt/pynac

This commit is contained in:
Franz Pletz 2024-05-13 00:31:48 +02:00 committed by GitHub
commit 70d4cc383a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,15 +10,15 @@
, ncurses
}:
stdenv.mkDerivation rec {
version = "0.7.29";
stdenv.mkDerivation (finalAttrs: {
pname = "pynac";
version = "0.7.29";
src = fetchFromGitHub {
owner = "pynac";
repo = "pynac";
rev = "pynac-${version}";
sha256 = "sha256-ocR7emXtKs+Xe2f6dh4xEDAacgiolY8mtlLnWnNBS8A=";
rev = "pynac-${finalAttrs.version}";
hash = "sha256-ocR7emXtKs+Xe2f6dh4xEDAacgiolY8mtlLnWnNBS8A=";
};
patches = [
@ -27,10 +27,16 @@ stdenv.mkDerivation rec {
(fetchpatch {
name = "realpartloop.patch";
url = "https://git.sagemath.org/sage.git/plain/build/pkgs/pynac/patches/realpartloop.patch?h=9.4.beta5";
sha256 = "sha256-1nj0xtlFN5fZKEiRLD+tiW/ZtxMQre1ziEGA0OVUGE4=";
hash = "sha256-1nj0xtlFN5fZKEiRLD+tiW/ZtxMQre1ziEGA0OVUGE4=";
})
];
# Python 3.11 moved this header file, but is now is imported by default
postPatch = ''
substituteInPlace ginac/numeric.cpp \
--replace-fail "#include <longintrepr.h>" ""
'';
buildInputs = [
flint
gmp
@ -57,4 +63,4 @@ stdenv.mkDerivation rec {
maintainers = teams.sage.members;
platforms = platforms.unix;
};
}
})