mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
python3Packages.hyppo: init at 0.1.3
This commit is contained in:
parent
9d58eb47f2
commit
5315ce0e40
2 changed files with 42 additions and 0 deletions
40
pkgs/development/python-modules/hyppo/default.nix
Normal file
40
pkgs/development/python-modules/hyppo/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, isPy27
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pytestCheckHook , pytestcov , numba
|
||||||
|
, numpy
|
||||||
|
, scikitlearn
|
||||||
|
, scipy
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "hyppo";
|
||||||
|
version = "0.1.3";
|
||||||
|
|
||||||
|
disabled = isPy27;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "neurodata";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0qdnb1l4hz4dgwhapz1fp9sb2vxxvr8h2ngsbvyf50h3kapcn19r";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
numba
|
||||||
|
numpy
|
||||||
|
scikitlearn
|
||||||
|
scipy
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [ pytestCheckHook pytestcov ];
|
||||||
|
pytestFlagsArray = [ "--ignore=docs" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/neurodata/hyppo";
|
||||||
|
description = "Indepedence testing in Python";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ bcdarwin ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2764,6 +2764,8 @@ in {
|
||||||
|
|
||||||
hypothesis = if isPy3k then callPackage ../development/python-modules/hypothesis { } else self.hypothesis_4;
|
hypothesis = if isPy3k then callPackage ../development/python-modules/hypothesis { } else self.hypothesis_4;
|
||||||
|
|
||||||
|
hyppo = callPackage ../development/python-modules/hyppo { };
|
||||||
|
|
||||||
i3ipc = callPackage ../development/python-modules/i3ipc { };
|
i3ipc = callPackage ../development/python-modules/i3ipc { };
|
||||||
|
|
||||||
i3-py = callPackage ../development/python-modules/i3-py { };
|
i3-py = callPackage ../development/python-modules/i3-py { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue