mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
70 lines
1.2 KiB
Nix
70 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonApplication
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, pythonRelaxDepsHook
|
|
|
|
, certifi
|
|
, charset-normalizer
|
|
, enochecker-core
|
|
, exceptiongroup
|
|
, idna
|
|
, iniconfig
|
|
, jsons
|
|
, packaging
|
|
, pluggy
|
|
, pytest
|
|
, requests
|
|
, tomli
|
|
, typish
|
|
, urllib3
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "enochecker-test";
|
|
version = "0.9.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "enochecker_test";
|
|
hash = "sha256-M0RTstFePU7O51YVEncVDuuR6F7R8mfdKbO0j7k/o8Q=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
pythonRelaxDeps = true;
|
|
|
|
propagatedBuildInputs = [
|
|
certifi
|
|
charset-normalizer
|
|
enochecker-core
|
|
exceptiongroup
|
|
idna
|
|
iniconfig
|
|
jsons
|
|
packaging
|
|
pluggy
|
|
pytest
|
|
requests
|
|
tomli
|
|
typish
|
|
urllib3
|
|
];
|
|
|
|
# tests require network access
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Automatically test services/checker using the enochecker API";
|
|
homepage = "https://github.com/enowars/enochecker_test";
|
|
changelog = "https://github.com/enowars/enochecker_test/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fwc ];
|
|
};
|
|
}
|