Alexis Simon 1ebe8b99ee
treewide: remove alxsimon as maintainer (#434934)
Alexis Simon has requested to drop their maintainership of several python packages.
2025-08-19 08:28:08 +00:00

40 lines
805 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools-scm,
pythonOlder,
pytestCheckHook,
pytest-cov-stub,
}:
buildPythonPackage rec {
pname = "newick";
version = "1.9.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "dlce-eva";
repo = "python-newick";
rev = "v${version}";
hash = "sha256-TxyR6RYvy2oIcDNZnHrExtPYGspyWOtZqNy488OmWwk=";
};
nativeBuildInputs = [ setuptools-scm ];
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
];
pythonImportsCheck = [ "newick" ];
meta = with lib; {
description = "Python package to read and write the Newick format";
homepage = "https://github.com/dlce-eva/python-newick";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}