depot/third_party/nixpkgs/pkgs/development/python-modules/sectools/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

45 lines
895 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, ldap3
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "sectools";
version = "1.4.3";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "p0dalirius";
repo = "sectools";
rev = "refs/tags/${version}";
hash = "sha256-k3k1/DFmv0resnsNht/C+2Xh6qbSQmk83eN/3vtDU00=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
ldap3
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"sectools"
];
meta = with lib; {
description = "library containing functions to write security tools";
homepage = "https://github.com/p0dalirius/sectools";
changelog = "https://github.com/p0dalirius/sectools/releases/tag/${version}";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};
}