My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/censys/default.nix

79 lines
1.3 KiB

{ 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.8";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "censys";
repo = "censys-python";
rev = "v${version}";
hash = "sha256-iPCFflibEqA286j+7Vp4ZQaO9e6Bp+o7A/a7DELJcxA=";
};
nativeBuildInputs = [
poetry-core
pythonRelaxDepsHook
];
propagatedBuildInputs = [
backoff
requests
rich
importlib-metadata
];
checkInputs = [
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 ];
};
}