mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
python310Packages.policyuniverse: add format
This commit is contained in:
parent
ff6ad139da
commit
17520867b0
1 changed files with 6 additions and 2 deletions
|
@ -7,17 +7,21 @@
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "policyuniverse";
|
pname = "policyuniverse";
|
||||||
version = "1.5.0.20220523";
|
version = "1.5.0.20220523";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "sha256-gmcF8KdwGLMU5g1NYgxLKgBLk1yJrWi/dpVETDaY0Vo=";
|
has = "sha256-gmcF8KdwGLMU5g1NYgxLKgBLk1yJrWi/dpVETDaY0Vo=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Tests are not shipped and there are no GitHub tags
|
# Tests are not shipped and there are no GitHub tags
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
pythonImportsCheck = [ "policyuniverse" ];
|
pythonImportsCheck = [
|
||||||
|
"policyuniverse"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Parse and Process AWS IAM Policies, Statements, ARNs and wildcards";
|
description = "Parse and Process AWS IAM Policies, Statements, ARNs and wildcards";
|
||||||
|
|
Loading…
Reference in a new issue