Merge pull request #48592 from Assassinkin/packer

pythonPackages.python-packer: init at 0.1.2
This commit is contained in:
Maximilian Bosch 2018-10-17 20:50:19 +02:00 committed by GitHub
commit a91e4fdad5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };