nixpkgs/pkgs/development/python-modules/censys/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
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.
2023-01-21 12:00:00 +00:00

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 ];
};
}