mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
0215034f25
when they already rely on SRI hashes.
64 lines
1004 B
Nix
64 lines
1004 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, numpy
|
|
, scipy
|
|
, pandas
|
|
, matplotlib
|
|
, autograd
|
|
, autograd-gamma
|
|
, formulaic
|
|
, scikit-learn
|
|
, sybil
|
|
, flaky
|
|
, jinja2
|
|
, dill
|
|
, psutil
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "lifelines";
|
|
version = "0.27.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "CamDavidsonPilon";
|
|
repo = "lifelines";
|
|
rev = "v${version}";
|
|
hash = "sha256-KDoXplqkTsk85dmcTBhbj2GDcC4ry+2z5C2QHAnBTw4=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
scipy
|
|
pandas
|
|
matplotlib
|
|
autograd
|
|
autograd-gamma
|
|
formulaic
|
|
];
|
|
|
|
pythonImportsCheck = [ "lifelines" ];
|
|
|
|
checkInputs = [
|
|
dill
|
|
flaky
|
|
jinja2
|
|
psutil
|
|
pytestCheckHook
|
|
scikit-learn
|
|
sybil
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
"lifelines/tests/test_estimation.py"
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://lifelines.readthedocs.io";
|
|
description = "Survival analysis in Python";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ swflint ];
|
|
};
|
|
}
|