Merge pull request #48592 from Assassinkin/packer
pythonPackages.python-packer: init at 0.1.2
This commit is contained in:
commit
a91e4fdad5
24
pkgs/development/python-modules/python-packer/default.nix
Normal file
24
pkgs/development/python-modules/python-packer/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, sh }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-packer";
|
||||
version = "0.1.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "fd363dae9bd2efd447739bbf7a4f29c1e4741596ae7b02d252fe525b2b4176e7";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ sh ];
|
||||
|
||||
# Tests requires network connections
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "An interface for packer.io";
|
||||
homepage = https://github.com/nir0s/python-packer;
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ psyanticy ];
|
||||
};
|
||||
}
|
||||
|
@ -584,6 +584,8 @@ in {
|
||||
|
||||
python3-openid = callPackage ../development/python-modules/python3-openid { };
|
||||
|
||||
python-packer = callPackage ../development/python-modules/python-packer { };
|
||||
|
||||
python-periphery = callPackage ../development/python-modules/python-periphery { };
|
||||
|
||||
python-prctl = callPackage ../development/python-modules/python-prctl { };
|
||||
|
Loading…
Reference in New Issue
Block a user