python3Packages.fxrays: init at 1.3.6

This commit is contained in:
noiioiu 2025-05-22 19:51:41 -05:00
parent 6ad174a6dc
commit a2ae90d0c7
No known key found for this signature in database
GPG key ID: BF51F00D07482A89
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,42 @@
{
lib,
python,
buildPythonPackage,
fetchFromGitHub,
setuptools,
cython,
}:
buildPythonPackage rec {
pname = "fxrays";
version = "1.3.6";
pyproject = true;
src = fetchFromGitHub {
owner = "3-manifolds";
repo = "FXrays";
tag = "${version}_as_released";
hash = "sha256-IwEY54zDXqMci7WRvhueDJidTsbMwv6eqQSGZzFOtnQ";
};
build-system = [
setuptools
cython
];
pythonImportsCheck = [ "FXrays" ];
checkPhase = ''
runHook preCheck
${python.interpreter} -m FXrays.test
runHook postCheck
'';
meta = {
description = "Computes extremal rays of polyhedral cones with filtering";
changelog = "https://github.com/3-manifolds/FXrays/releases/tag/${src.tag}";
homepage = "https://github.com/3-manifolds/FXrays";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ noiioiu ];
};
}

View file

@ -5432,6 +5432,8 @@ self: super: with self; {
fx2 = callPackage ../development/python-modules/fx2 { }; fx2 = callPackage ../development/python-modules/fx2 { };
fxrays = callPackage ../development/python-modules/fxrays { };
fyta-cli = callPackage ../development/python-modules/fyta-cli { }; fyta-cli = callPackage ../development/python-modules/fyta-cli { };
g2pkk = callPackage ../development/python-modules/g2pkk { }; g2pkk = callPackage ../development/python-modules/g2pkk { };