summary refs log tree commit diff
path: root/pkgs/development/python-modules/ppscore/default.nix
blob: c817fc390ead9d83590ca197605a7f7e801e9bae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ lib
, buildPythonPackage
, fetchFromGitHub
, pandas
, pytestCheckHook
, pythonOlder
, scikit-learn
}:

buildPythonPackage rec {
  pname = "ppscore";
  version = "unstable-2021-11-25";
  format = "setuptools";

  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "8080labs";
    repo = pname;
    rev = "c9268c16b6305c5c38e2fe2fd84f43d97ec1aaca";
    hash = "sha256-qiogjUgcLFauAMpVf2CKNC27c9xR9q7nY69n8/go1ms=";
  };

  propagatedBuildInputs = [
    pandas
    scikit-learn
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "ppscore"
  ];

  meta = with lib; {
    description = "Python implementation of the Predictive Power Score (PPS)";
    homepage = "https://github.com/8080labs/ppscore/";
    license = licenses.mit;
    maintainers = with maintainers; [ evax ];
  };
}