Merge pull request #199456 from r-ryantm/auto-update/credslayer

credslayer: 0.1.2 -> 0.1.3
This commit is contained in:
Fabian Affolter 2022-11-04 09:52:10 +01:00 committed by GitHub
commit 6ca3a1156f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,13 +6,14 @@
python3.pkgs.buildPythonApplication rec {
pname = "credslayer";
version = "0.1.2";
version = "0.1.3";
format = "setuptools";
src = fetchFromGitHub {
owner = "ShellCode33";
repo = "CredSLayer";
rev = "v${version}";
sha256 = "1rbfy0h9c2gra1r2b39kngj3m7g177nmzzs5xy9np8lxixrh17pc";
rev = "refs/tags/v${version}";
hash = "sha256-gryV9MHULY6ZHy6YDFQDIkZsfIX8La0tHT0vrrQJNDQ=";
};
propagatedBuildInputs = with python3.pkgs; [
@ -24,7 +25,9 @@ python3.pkgs.buildPythonApplication rec {
pytestCheckHook
];
pytestFlagsArray = [ "tests/tests.py" ];
pytestFlagsArray = [
"tests/tests.py"
];
disabledTests = [
# Requires a telnet setup
@ -36,7 +39,9 @@ python3.pkgs.buildPythonApplication rec {
"test_ntlmssp"
];
pythonImportsCheck = [ "credslayer" ];
pythonImportsCheck = [
"credslayer"
];
postInstall = ''
wrapProgram $out/bin/credslayer \
@ -48,8 +53,5 @@ python3.pkgs.buildPythonApplication rec {
homepage = "https://github.com/ShellCode33/CredSLayer";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
# Upstream issue https://github.com/ShellCode33/CredSLayer/issues/16
# This package works only with pyshark < 0.5
broken = true;
};
}