12 buildPythonPackage rec {
13 pname = "taxii2-client";
17 disabled = pythonOlder "3.9";
19 src = fetchFromGitHub {
21 repo = "cti-taxii-client";
22 rev = "refs/tags/v${version}";
23 hash = "sha256-e22bJdLAlm30vv/xIgLSjcwmzfN0Pwt2JydLgEbA+Is=";
26 build-system = [ setuptools ];
34 pythonImportsCheck = [ "taxii2client" ];
37 description = "TAXII 2 client library";
38 homepage = "https://github.com/oasis-open/cti-taxii-client/";
39 changelog = "https://github.com/oasis-open/cti-taxii-client/blob/${src.rev}/CHANGES.txt";
40 license = lib.licenses.bsd3;
41 maintainers = with lib.maintainers; [ fab ];