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