pythonPackages.imgaug: init at 0.2.6 (#43720)
This commit is contained in:
parent
f735d6a38d
commit
83cc1e3d38
|
@ -0,0 +1,29 @@
|
||||||
|
{ stdenv, buildPythonPackage, fetchPypi, numpy, scipy, scikitimage, opencv3, six }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "imgaug";
|
||||||
|
version = "0.2.6";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1wy8ydkqq0jrwxwdv04q89n3gwsr9pjaspsbw26ipg5a5lnhb9c2";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
numpy
|
||||||
|
scipy
|
||||||
|
scikitimage
|
||||||
|
opencv3
|
||||||
|
six
|
||||||
|
];
|
||||||
|
|
||||||
|
# disable tests when there are no tests in the PyPI archive
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/aleju/imgaug;
|
||||||
|
description = "Image augmentation for machine learning experiments";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ cmcdragonkai ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -6515,6 +6515,8 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
imgaug = callPackage ../development/python-modules/imgaug { };
|
||||||
|
|
||||||
inflection = callPackage ../development/python-modules/inflection { };
|
inflection = callPackage ../development/python-modules/inflection { };
|
||||||
|
|
||||||
influxdb = buildPythonPackage rec {
|
influxdb = buildPythonPackage rec {
|
||||||
|
|
Loading…
Reference in New Issue