Merge pull request #153970 from fabaff/fix-ppscore

python3Packages.ppscore: 1.1.1 -> unstable-2021-11-25
This commit is contained in:
Fabian Affolter 2022-01-08 11:59:21 +01:00 committed by GitHub
commit 660923a477
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,33 +1,41 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, isPy27
, pandas
, scikit-learn
, pytestCheckHook
, pythonOlder
, scikit-learn
}:
buildPythonPackage rec {
pname = "ppscore";
version = "1.1.1";
disabled = isPy27;
version = "unstable-2021-11-25";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "8080labs";
repo = pname;
rev = version;
sha256 = "11y6axhj0nlagf7ax6gas1g06krrmddb1jlmf0mmrmyi7z0vldk2";
rev = "c9268c16b6305c5c38e2fe2fd84f43d97ec1aaca";
hash = "sha256-qiogjUgcLFauAMpVf2CKNC27c9xR9q7nY69n8/go1ms=";
};
checkInputs = [ pytestCheckHook ];
propagatedBuildInputs = [
pandas
scikit-learn
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"ppscore"
];
meta = with lib; {
description = "A Python implementation of the Predictive Power Score (PPS)";
description = "Python implementation of the Predictive Power Score (PPS)";
homepage = "https://github.com/8080labs/ppscore/";
license = licenses.mit;
maintainers = with maintainers; [ evax ];