Files
nixpkgs/pkgs/development/python-modules/gophish/default.nix
T
Robert Schütz 1a04744f74 treewide: remove superfluous disabled
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:

    pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
    for f in $(find -name '*.nix'); do
        grep -q "$pattern" "$f" || continue
        sed -i "/$pattern/d" "$f"
        if [ $(grep -c pythonOlder "$f") == 1 ]; then
            sed -i '/^\s*pythonOlder,\s*$/d' "$f"
        fi
        nixfmt "$f"
    done
2026-01-11 09:34:20 -08:00

60 lines
1.0 KiB
Nix

{
lib,
appdirs,
buildPythonPackage,
certifi,
chardet,
fetchFromGitHub,
idna,
packaging,
pyparsing,
python-dateutil,
requests,
setuptools,
six,
urllib3,
}:
buildPythonPackage rec {
pname = "gophish";
version = "0.5.1";
pyproject = true;
src = fetchFromGitHub {
owner = "gophish";
repo = "api-client-python";
tag = "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 = {
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 = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}