pythonPackages.cfn-flip: init at 1.1.0 (#52944)
This commit is contained in:
parent
2d2f104751
commit
297c9314ef
25
pkgs/development/python-modules/cfn-flip/default.nix
Normal file
25
pkgs/development/python-modules/cfn-flip/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchPypi, six, pyyaml, click, pytestrunner }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "cfn-flip";
|
||||||
|
version = "1.1.0.post1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
pname = "cfn_flip";
|
||||||
|
inherit version;
|
||||||
|
sha256 = "16r01ijjwnq06ax5xrv6mq9l00f6sgzw776kr43zjai09xsbwwck";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ six pyyaml click ];
|
||||||
|
nativeBuildInputs = [ pytestrunner ];
|
||||||
|
|
||||||
|
# No tests in Pypi
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Tool for converting AWS CloudFormation templates between JSON and YAML formats";
|
||||||
|
homepage = https://github.com/awslabs/aws-cfn-template-flip;
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ psyanticy ];
|
||||||
|
};
|
||||||
|
}
|
@ -298,6 +298,8 @@ in {
|
|||||||
|
|
||||||
cdecimal = callPackage ../development/python-modules/cdecimal { };
|
cdecimal = callPackage ../development/python-modules/cdecimal { };
|
||||||
|
|
||||||
|
cfn-flip = callPackage ../development/python-modules/cfn-flip { };
|
||||||
|
|
||||||
chalice = callPackage ../development/python-modules/chalice { };
|
chalice = callPackage ../development/python-modules/chalice { };
|
||||||
|
|
||||||
cleo = callPackage ../development/python-modules/cleo { };
|
cleo = callPackage ../development/python-modules/cleo { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user