biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / policyuniverse / default.nix
blob99a37254018c93d488b8278eef712a8936bb6d9c
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6 }:
8 buildPythonPackage rec {
9   pname = "policyuniverse";
10   version = "1.5.1.20231109";
11   format = "setuptools";
13   disabled = pythonOlder "3.7";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-dOVtQQVgkVwsUTLjYbATDkv/4xKi9FIw6sUNfAlLxAo=";
18   };
20   # Tests are not shipped and there are no GitHub tags
21   doCheck = false;
23   pythonImportsCheck = [ "policyuniverse" ];
25   meta = with lib; {
26     description = "Parse and Process AWS IAM Policies, Statements, ARNs and wildcards";
27     homepage = "https://github.com/Netflix-Skunkworks/policyuniverse";
28     license = with licenses; [ asl20 ];
29     maintainers = with maintainers; [ fab ];
30   };