mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 10:12:58 +00:00
56 lines
1.2 KiB
Nix
56 lines
1.2 KiB
Nix
{ buildPythonPackage
|
|
, fetchurl
|
|
, imageio
|
|
, numpy
|
|
, opencv3
|
|
, pytest
|
|
, scikitimage
|
|
, scipy
|
|
, shapely
|
|
, six
|
|
, stdenv
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "imgaug";
|
|
version = "0.3.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/aleju/imgaug/archive/c3d99a420efc45652a1264920dc20378a54b1325.zip";
|
|
sha256 = "sha256:174nvhyhdn3vz0i34rqmkn26840j3mnfr55cvv5bdf9l4y9bbjq2";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace requirements.txt \
|
|
--replace "opencv-python-headless" ""
|
|
substituteInPlace setup.py \
|
|
--replace "opencv-python-headless" ""
|
|
substituteInPlace pytest.ini \
|
|
--replace "--xdoctest --xdoctest-global-exec=\"import imgaug as ia\nfrom imgaug import augmenters as iaa\"" ""
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
imageio
|
|
numpy
|
|
opencv3
|
|
scikitimage
|
|
scipy
|
|
shapely
|
|
six
|
|
];
|
|
|
|
checkPhase = ''
|
|
pytest ./test
|
|
'';
|
|
|
|
checkInputs = [ opencv3 pytest ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/aleju/imgaug;
|
|
description = "Image augmentation for machine learning experiments";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ cmcdragonkai rakesh4g ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|