python313Packages.enterpriseattack: 0.1.8 -> 1.0.3

Diff: https://github.com/xakepnz/enterpriseattack/compare/refs/tags/v0.1.8...refs/tags/v1.0.3

Changelog: https://github.com/xakepnz/enterpriseattack/releases/tag/v.1.0.3

+8 -7
+8 -7
pkgs/development/python-modules/enterpriseattack/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 - pythonOlder, 6 5 requests, 7 6 setuptools, 7 + setuptools-scm, 8 8 ujson, 9 9 }: 10 10 11 11 buildPythonPackage rec { 12 12 pname = "enterpriseattack"; 13 - version = "0.1.8"; 13 + version = "1.0.3"; 14 14 pyproject = true; 15 15 16 - disabled = pythonOlder "3.8"; 17 - 18 16 src = fetchFromGitHub { 19 17 owner = "xakepnz"; 20 18 repo = "enterpriseattack"; 21 - tag = "v.${version}"; 22 - hash = "sha256-cxbGc9iQe94Th6MSUldI17oVCclFhUM78h1w+6KXzm4="; 19 + tag = "v${version}"; 20 + hash = "sha256-9tEJVz6eO02/iwOHIjhcASfSd2t2W06JGzxSqepUYjk="; 23 21 }; 24 22 25 - build-system = [ setuptools ]; 23 + build-system = [ 24 + setuptools 25 + setuptools-scm 26 + ]; 26 27 27 28 dependencies = [ 28 29 requests