python3Packages.batchgenerators: 0.19.7 -> 0.20.0

This commit is contained in:
Ben Darwin 2020-04-28 11:35:46 -04:00 committed by Jon
parent 07806dd7bb
commit cc89b93798

View File

@ -1,30 +1,36 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, isPy27 , isPy27
, fetchPypi , fetchFromGitHub
, pytest , pytest
, unittest2 , unittest2
, future , future
, numpy , numpy
, pillow
, scipy , scipy
, scikitlearn , scikitlearn
, scikitimage , scikitimage
, threadpoolctl , threadpoolctl
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "batchgenerators"; pname = "batchgenerators";
version = "0.19.7"; version = "0.20.0";
disabled = isPy27; disabled = isPy27;
src = fetchPypi { src = fetchFromGitHub {
inherit pname version; owner = "MIC-DKFZ";
sha256 = "0qqzwqf5r0q6jh8avz4f9kf8x96crvdnkznhf24pbm0faf8yk67q"; repo = pname;
rev = "v${version}";
sha256 = "0cc3i4wznqb7lk8n6jkprvkpsby6r7khkxqwn75k8f01mxgjfpvf";
}; };
propagatedBuildInputs = [ future numpy scipy scikitlearn scikitimage threadpoolctl ]; propagatedBuildInputs = [
future numpy pillow scipy scikitlearn scikitimage threadpoolctl
];
checkInputs = [ pytest unittest2 ]; checkInputs = [ pytest unittest2 ];
checkPhase = "pytest tests"; checkPhase = "pytest tests";