mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 18:53:17 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
80 lines
1.3 KiB
Nix
80 lines
1.3 KiB
Nix
{ lib
|
|
, backoff
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, importlib-metadata
|
|
, parameterized
|
|
, poetry-core
|
|
, pytest-mock
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pythonRelaxDepsHook
|
|
, requests
|
|
, requests-mock
|
|
, responses
|
|
, rich
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "censys";
|
|
version = "2.1.9";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "censys";
|
|
repo = "censys-python";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-BB/pLpPK2qh5902bZp9QM3Wiu/l48pzq7HcjaAtM4D0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
backoff
|
|
requests
|
|
rich
|
|
importlib-metadata
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
parameterized
|
|
pytest-mock
|
|
pytestCheckHook
|
|
requests-mock
|
|
responses
|
|
];
|
|
|
|
pythonRelaxDeps = [
|
|
"backoff"
|
|
"requests"
|
|
"rich"
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace pytest.ini \
|
|
--replace "--cov" ""
|
|
'';
|
|
|
|
# The tests want to write a configuration file
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d)
|
|
mkdir -p $HOME
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"censys"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python API wrapper for the Censys Search Engine (censys.io)";
|
|
homepage = "https://github.com/censys/censys-python";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|