My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/ppscore/default.nix

43 lines
826 B

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