python3Packages.plink: init at 2.4.6

This commit is contained in:
noiioiu 2025-05-22 19:54:20 -05:00
parent c7c30f47c2
commit f98c76b988
No known key found for this signature in database
GPG key ID: BF51F00D07482A89
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,39 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
sphinx,
tkinter,
}:
buildPythonPackage rec {
pname = "plink";
version = "2.4.6";
pyproject = true;
src = fetchFromGitHub {
owner = "3-manifolds";
repo = "plink";
tag = "${version}_as_released";
hash = "sha256-+WUyQvQY9Fx47GikzJ4gcCpSIjvk5756FP0bDdF6Ack=";
};
build-system = [
setuptools
sphinx
];
dependencies = [ tkinter ];
pythonImportsCheck = [ "plink" ];
meta = {
description = "Full featured Tk-based knot and link editor";
mainProgram = "plink";
homepage = "https://3-manifolds.github.io/PLink";
changelog = "https://github.com/3-manifolds/PLink/releases/tag/${src.tag}";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ noiioiu ];
};
}

View file

@ -11441,6 +11441,8 @@ self: super: with self; {
plfit = toPythonModule (pkgs.plfit.override { inherit (self) python; });
plink = callPackage ../development/python-modules/plink { };
plone-testing = callPackage ../development/python-modules/plone-testing { };
ploomber-core = callPackage ../development/python-modules/ploomber-core { };