python310Packages.newick: init at version 1.9.0

Co-authored-by: OTABI Tomoya <tomoya.otabi@gmail.com>
This commit is contained in:
Alexis Simon
2023-07-04 15:18:42 -07:00
co-authored by OTABI Tomoya
parent dc172aee9b
commit 24a4b76dd4
2 changed files with 47 additions and 0 deletions
@@ -0,0 +1,45 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools-scm
, pythonOlder
, pytestCheckHook
}:
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
];
postPatch = ''
# remove coverage arguments to pytest
sed -i '/--cov/d' setup.cfg
'';
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"newick"
];
meta = with lib; {
description = "A python package to read and write the Newick format";
homepage = "https://github.com/dlce-eva/python-newick";
license = licenses.asl20;
maintainers = with maintainers; [ alxsimon ];
};
}
+2
View File
@@ -6768,6 +6768,8 @@ self: super: with self; {
newversion = callPackage ../development/python-modules/newversion { };
newick = callPackage ../development/python-modules/newick { };
nexia = callPackage ../development/python-modules/nexia { };
nextcloudmonitor = callPackage ../development/python-modules/nextcloudmonitor { };