python3Packages.ppscore: init at 1.1.1
This commit is contained in:
parent
0fb9276e51
commit
8aa15a1a10
35
pkgs/development/python-modules/ppscore/default.nix
Normal file
35
pkgs/development/python-modules/ppscore/default.nix
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, isPy27
|
||||||
|
, pandas
|
||||||
|
, scikitlearn
|
||||||
|
, pytestCheckHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "ppscore";
|
||||||
|
version = "1.1.1";
|
||||||
|
disabled = isPy27;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "8080labs";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "11y6axhj0nlagf7ax6gas1g06krrmddb1jlmf0mmrmyi7z0vldk2";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
pandas
|
||||||
|
scikitlearn
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A Python implementation of the Predictive Power Score (PPS)";
|
||||||
|
homepage = "https://github.com/8080labs/ppscore/";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ evax ];
|
||||||
|
};
|
||||||
|
}
|
@ -4640,6 +4640,8 @@ in {
|
|||||||
|
|
||||||
pproxy = callPackage ../development/python-modules/pproxy { };
|
pproxy = callPackage ../development/python-modules/pproxy { };
|
||||||
|
|
||||||
|
ppscore = callPackage ../development/python-modules/ppscore { };
|
||||||
|
|
||||||
pq = callPackage ../development/python-modules/pq { };
|
pq = callPackage ../development/python-modules/pq { };
|
||||||
|
|
||||||
prance = callPackage ../development/python-modules/prance { };
|
prance = callPackage ../development/python-modules/prance { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user