Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / policyuniverse / default.nix
blobe324813c6a5873d15ab4b60bd9dd539e54310569
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 }:
7 buildPythonPackage rec {
8   pname = "policyuniverse";
9   version = "1.5.1.20231109";
10   format = "setuptools";
12   disabled = pythonOlder "3.7";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-dOVtQQVgkVwsUTLjYbATDkv/4xKi9FIw6sUNfAlLxAo=";
17   };
19   # Tests are not shipped and there are no GitHub tags
20   doCheck = false;
22   pythonImportsCheck = [
23     "policyuniverse"
24   ];
26   meta = with lib; {
27     description = "Parse and Process AWS IAM Policies, Statements, ARNs and wildcards";
28     homepage = "https://github.com/Netflix-Skunkworks/policyuniverse";
29     license = with licenses; [ asl20 ];
30     maintainers = with maintainers; [ fab ];
31   };