pythonPackages.hdmedians: init at 0.13
This commit is contained in:
parent
1a7682deb2
commit
aaa1af9bde
|
@ -0,0 +1,35 @@
|
||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, nose
|
||||||
|
, cython
|
||||||
|
, numpy
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
version = "0.13";
|
||||||
|
pname = "hdmedians";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "230f80e064d905c49a1941af1b7e806e2f22b3c9a90ad5c21fd17d72636ea277";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ cython ];
|
||||||
|
checkInputs = [ nose ];
|
||||||
|
propagatedBuildInputs = [ numpy ];
|
||||||
|
|
||||||
|
# cannot resolve path for packages in tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
nosetests
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://github.com/daleroberts/hdmedians;
|
||||||
|
description = "High-dimensional medians";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = [ maintainers.costrouc ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -364,6 +364,8 @@ in {
|
||||||
|
|
||||||
histbook = callPackage ../development/python-modules/histbook { };
|
histbook = callPackage ../development/python-modules/histbook { };
|
||||||
|
|
||||||
|
hdmedians = callPackage ../development/python-modules/hdmedians { };
|
||||||
|
|
||||||
httpsig = callPackage ../development/python-modules/httpsig { };
|
httpsig = callPackage ../development/python-modules/httpsig { };
|
||||||
|
|
||||||
i3ipc = callPackage ../development/python-modules/i3ipc { };
|
i3ipc = callPackage ../development/python-modules/i3ipc { };
|
||||||
|
@ -561,7 +563,7 @@ in {
|
||||||
slurm = pkgs.slurm;
|
slurm = pkgs.slurm;
|
||||||
};
|
};
|
||||||
|
|
||||||
pystache = callPackage ../development/python-modules/pystache { };
|
pystache = callPackage ../development/python-modules/pystache { };
|
||||||
|
|
||||||
pytest-tornado = callPackage ../development/python-modules/pytest-tornado { };
|
pytest-tornado = callPackage ../development/python-modules/pytest-tornado { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue