mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
47 lines
825 B
Nix
47 lines
825 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchPypi
|
|
, aiohttp
|
|
, requests
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "brunt";
|
|
version = "1.2.0";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "e704627dc7b9c0a50c67ae90f1d320b14f99f2b2fc9bf1ef0461b141dcf1bce9";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i '/--cov/d' setup.cfg
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
requests
|
|
];
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
# tests require Brunt hardware
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "brunt" ];
|
|
|
|
meta = {
|
|
description = "Unofficial Python SDK for Brunt";
|
|
homepage = "https://github.com/eavanvalkenburg/brunt-api";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
};
|
|
}
|