21 buildPythonPackage rec {
24 format = "setuptools";
26 disabled = pythonOlder "3.7";
28 src = fetchFromGitHub {
29 owner = "CamDavidsonPilon";
31 rev = "refs/tags/v${version}";
32 hash = "sha256-2AjqN4TtBY1KtgFlY0E2UcFUHniHe2Hge+JaUQd4gO8=";
35 propagatedBuildInputs = [
55 pythonImportsCheck = [
60 "lifelines/tests/test_estimation.py"
64 "test_datetimes_to_durations_with_different_frequencies"
68 description = "Survival analysis in Python";
69 homepage = "https://lifelines.readthedocs.io";
70 changelog = "https://github.com/CamDavidsonPilon/lifelines/blob/v${version}/CHANGELOG.md";
71 license = licenses.mit;
72 maintainers = with maintainers; [ swflint ];