depot/third_party/nixpkgs/pkgs/development/python-modules/newick/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

45 lines
879 B
Nix

{ 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 ];
};
}