mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
python3Packages.fxrays: init at 1.3.6
This commit is contained in:
parent
6ad174a6dc
commit
a2ae90d0c7
2 changed files with 44 additions and 0 deletions
42
pkgs/development/python-modules/fxrays/default.nix
Normal file
42
pkgs/development/python-modules/fxrays/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -5432,6 +5432,8 @@ self: super: with self; {
|
|||
|
||||
fx2 = callPackage ../development/python-modules/fx2 { };
|
||||
|
||||
fxrays = callPackage ../development/python-modules/fxrays { };
|
||||
|
||||
fyta-cli = callPackage ../development/python-modules/fyta-cli { };
|
||||
|
||||
g2pkk = callPackage ../development/python-modules/g2pkk { };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue