python313Packages.sectools: 1.4.4 -> 1.5.0 (#444346)

authored by Fabian Affolter and committed by GitHub 93efdf2d b1d997d0

+5 -8
+5 -8
pkgs/development/python-modules/sectools/default.nix
··· 3 buildPythonPackage, 4 fetchFromGitHub, 5 ldap3, 6 - pythonOlder, 7 setuptools, 8 }: 9 10 buildPythonPackage rec { 11 pname = "sectools"; 12 - version = "1.4.4"; 13 pyproject = true; 14 15 - disabled = pythonOlder "3.7"; 16 - 17 src = fetchFromGitHub { 18 owner = "p0dalirius"; 19 repo = "sectools"; 20 tag = version; 21 - hash = "sha256-dI0zokmndMZ4C7aX73WOdyXvOjCQJzZU6C1uXDt97Vg="; 22 }; 23 24 - nativeBuildInputs = [ setuptools ]; 25 26 - propagatedBuildInputs = [ ldap3 ]; 27 28 # Module has no tests 29 doCheck = false; ··· 34 description = "Library containing functions to write security tools"; 35 homepage = "https://github.com/p0dalirius/sectools"; 36 changelog = "https://github.com/p0dalirius/sectools/releases/tag/${src.tag}"; 37 - license = with licenses; [ gpl3Only ]; 38 maintainers = with maintainers; [ fab ]; 39 }; 40 }
··· 3 buildPythonPackage, 4 fetchFromGitHub, 5 ldap3, 6 setuptools, 7 }: 8 9 buildPythonPackage rec { 10 pname = "sectools"; 11 + version = "1.5.0"; 12 pyproject = true; 13 14 src = fetchFromGitHub { 15 owner = "p0dalirius"; 16 repo = "sectools"; 17 tag = version; 18 + hash = "sha256-P0ixL6zdEcvL7KKbr1LcJyd8mqPZrwklspJmZ/KokEA="; 19 }; 20 21 + build-system = [ setuptools ]; 22 23 + dependencies = [ ldap3 ]; 24 25 # Module has no tests 26 doCheck = false; ··· 31 description = "Library containing functions to write security tools"; 32 homepage = "https://github.com/p0dalirius/sectools"; 33 changelog = "https://github.com/p0dalirius/sectools/releases/tag/${src.tag}"; 34 + license = licenses.gpl3Only; 35 maintainers = with maintainers; [ fab ]; 36 }; 37 }