python313Packages.sectools: modernize

authored by Fabian Affolter and committed by GitHub 77e8a23c 0971877d

+3 -6
+3 -6
pkgs/development/python-modules/sectools/default.nix
··· 3 buildPythonPackage, 4 fetchFromGitHub, 5 ldap3, 6 - pythonOlder, 7 setuptools, 8 }: 9 ··· 11 pname = "sectools"; 12 version = "1.5.0"; 13 pyproject = true; 14 - 15 - disabled = pythonOlder "3.7"; 16 17 src = fetchFromGitHub { 18 owner = "p0dalirius"; ··· 21 hash = "sha256-P0ixL6zdEcvL7KKbr1LcJyd8mqPZrwklspJmZ/KokEA="; 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 ··· 10 pname = "sectools"; 11 version = "1.5.0"; 12 pyproject = true; 13 14 src = fetchFromGitHub { 15 owner = "p0dalirius"; ··· 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 }