1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00
nixpkgs/pkgs/development/python-modules/mrjob/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

75 lines
1.4 KiB
Nix

{
lib,
buildPythonPackage,
pythonAtLeast,
fetchFromGitHub,
# propagates
pyyaml,
# optionals
boto3,
botocore,
google-cloud-dataproc,
google-cloud-logging,
google-cloud-storage,
python-rapidjson,
simplejson,
ujson,
# tests
pyspark,
unittestCheckHook,
warcio,
}:
buildPythonPackage rec {
pname = "mrjob";
version = "0.7.4";
# https://github.com/Yelp/mrjob/issues/2222
disabled = pythonAtLeast "3.12";
src = fetchFromGitHub {
owner = "Yelp";
repo = "mrjob";
rev = "refs/tags/v${version}";
hash = "sha256-Yp4yUx6tkyGB622I9y+AWK2AkIDVGKQPMM+LtB/M3uo=";
};
propagatedBuildInputs = [ pyyaml ];
passthru.optional-dependencies = {
aws = [
boto3
botocore
];
google = [
google-cloud-dataproc
google-cloud-logging
google-cloud-storage
];
rapidjson = [ python-rapidjson ];
simplejson = [ simplejson ];
ujson = [ ujson ];
};
doCheck = false; # failing tests
nativeCheckInputs = [
pyspark
unittestCheckHook
warcio
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
unittestFlagsArray = [ "-v" ];
meta = with lib; {
changelog = "https://github.com/Yelp/mrjob/blob/v${version}/CHANGES.txt";
description = "Run MapReduce jobs on Hadoop or Amazon Web Services";
homepage = "https://github.com/Yelp/mrjob";
license = licenses.asl20;
maintainers = [ ];
};
}