2021-01-17 23:32:36 +01:00
|
|
|
{ lib
|
|
|
|
, backoff
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
2021-08-24 23:53:13 +02:00
|
|
|
, importlib-metadata
|
2021-07-06 17:35:42 +02:00
|
|
|
, parameterized
|
2021-08-24 23:53:13 +02:00
|
|
|
, poetry-core
|
2021-01-17 23:32:36 +01:00
|
|
|
, pytestCheckHook
|
2021-07-06 17:35:42 +02:00
|
|
|
, pythonOlder
|
2021-01-17 23:32:36 +01:00
|
|
|
, requests
|
|
|
|
, requests-mock
|
2021-07-06 17:35:42 +02:00
|
|
|
, responses
|
|
|
|
, rich
|
2021-01-17 23:32:36 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "censys";
|
2021-10-08 08:22:13 +02:00
|
|
|
version = "2.0.9";
|
2021-08-24 23:53:13 +02:00
|
|
|
format = "pyproject";
|
|
|
|
|
2021-07-06 17:35:42 +02:00
|
|
|
disabled = pythonOlder "3.6";
|
2021-01-17 23:32:36 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "censys";
|
|
|
|
repo = "censys-python";
|
2021-07-06 17:35:42 +02:00
|
|
|
rev = "v${version}";
|
2021-10-08 08:22:13 +02:00
|
|
|
sha256 = "sha256-qh3Z8Gza8J3OEM94GguJ+oEdVle01Gx1m/7+LCOErKY=";
|
2021-01-17 23:32:36 +01:00
|
|
|
};
|
|
|
|
|
2021-08-24 23:53:13 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
poetry-core
|
|
|
|
];
|
|
|
|
|
2021-01-17 23:32:36 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
backoff
|
|
|
|
requests
|
2021-07-06 17:35:42 +02:00
|
|
|
rich
|
2021-08-24 23:53:13 +02:00
|
|
|
] ++ lib.optionals (pythonOlder "3.8") [
|
|
|
|
importlib-metadata
|
2021-01-17 23:32:36 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [
|
2021-07-06 17:35:42 +02:00
|
|
|
parameterized
|
2021-01-17 23:32:36 +01:00
|
|
|
pytestCheckHook
|
|
|
|
requests-mock
|
2021-07-06 17:35:42 +02:00
|
|
|
responses
|
2021-01-17 23:32:36 +01:00
|
|
|
];
|
|
|
|
|
2021-07-06 17:35:42 +02:00
|
|
|
postPatch = ''
|
2021-08-24 23:53:13 +02:00
|
|
|
substituteInPlace pyproject.toml \
|
|
|
|
--replace 'backoff = "^1.11.1"' 'backoff = "*"' \
|
|
|
|
--replace 'requests = ">=2.26.0"' 'requests = "*"' \
|
|
|
|
--replace 'rich = "^10.6.0"' 'rich = "*"'
|
2021-08-25 08:44:44 +02:00
|
|
|
substituteInPlace pytest.ini \
|
|
|
|
--replace "--cov" ""
|
2021-07-06 17:35:42 +02:00
|
|
|
'';
|
|
|
|
|
2021-01-17 23:32:36 +01:00
|
|
|
# The tests want to write a configuration file
|
|
|
|
preCheck = ''
|
|
|
|
export HOME=$(mktemp -d)
|
|
|
|
mkdir -p $HOME
|
2021-07-06 17:35:42 +02:00
|
|
|
'';
|
|
|
|
|
2021-01-17 23:32:36 +01:00
|
|
|
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 ];
|
2021-07-06 17:35:42 +02:00
|
|
|
maintainers = with maintainers; [ fab ];
|
2021-01-17 23:32:36 +01:00
|
|
|
};
|
|
|
|
}
|