Merge pull request #202057 from r-ryantm/auto-update/python310Packages.lsassy

python310Packages.lsassy: 3.1.4 -> 3.1.6

Changed files
+4 -3
pkgs
development
python-modules
lsassy
+4 -3
pkgs/development/python-modules/lsassy/default.nix
···
buildPythonPackage rec {
pname = "lsassy";
-
version = "3.1.4";
format = "setuptools";
disabled = pythonOlder "3.7";
···
src = fetchFromGitHub {
owner = "Hackndo";
repo = pname;
-
rev = "v${version}";
-
hash = "sha256-/YDBzH8Mji6PWBEIbsgZcTvoAWAsBbJV3cHfySY/gGA=";
};
propagatedBuildInputs = [
···
meta = with lib; {
description = "Python module to extract data from Local Security Authority Subsystem Service (LSASS)";
homepage = "https://github.com/Hackndo/lsassy";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
···
buildPythonPackage rec {
pname = "lsassy";
+
version = "3.1.6";
format = "setuptools";
disabled = pythonOlder "3.7";
···
src = fetchFromGitHub {
owner = "Hackndo";
repo = pname;
+
rev = "refs/tags/v${version}";
+
hash = "sha256-Rdgz9hU2un1CKX2dRI8tVzL2lG7Ufd5HwninOxOsxjM=";
};
propagatedBuildInputs = [
···
meta = with lib; {
description = "Python module to extract data from Local Security Authority Subsystem Service (LSASS)";
homepage = "https://github.com/Hackndo/lsassy";
+
changelog = "https://github.com/Hackndo/lsassy/releases/tag/v${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};