nixpkgs/pkgs/development/python-modules/gophish/default.nix
Martin Weinelt abdf5dc772
treewide: remove pythonRelaxDepsHook references
It is is now provided automatically, when `pythonRelaxDeps` or
`pythonRemoveDeps` is defined through `mk-python-derivation`.
2024-06-14 14:52:00 +02:00

64 lines
1.1 KiB
Nix

{
lib,
appdirs,
buildPythonPackage,
certifi,
chardet,
fetchFromGitHub,
idna,
packaging,
pyparsing,
python-dateutil,
pythonOlder,
requests,
setuptools,
six,
urllib3,
}:
buildPythonPackage rec {
pname = "gophish";
version = "0.5.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "gophish";
repo = "api-client-python";
rev = "refs/tags/v${version}";
hash = "sha256-ITwwU/Xixyi9JSWbYf606HB7S5E4jiI0lEYcOdNg3mo=";
};
pythonRelaxDeps = true;
build-system = [ setuptools ];
dependencies = [
appdirs
certifi
chardet
idna
packaging
pyparsing
python-dateutil
requests
six
urllib3
];
pythonImportsCheck = [ "gophish" ];
# Module has no test
doCheck = false;
meta = with lib; {
description = "Module to interact with Gophish";
homepage = "https://github.com/gophish/api-client-python";
changelog = "https://github.com/gophish/api-client-python/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}