about summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-packer
diff options
context:
space:
mode:
authornagato.pain <iuns@outlook.fr>2018-10-16 14:57:47 -0700
committerAssassinkin <iuns@outlook.fr>2018-10-17 18:55:41 +0100
commite494e1c4e3135304175e26502946f9d8645d9897 (patch)
tree774537f5876e5c9117df9707c9fb39b26ac8ae37 /pkgs/development/python-modules/python-packer
parent0f5f873e933052b6b198e4786276b16063ab729e (diff)
downloadnixlib-e494e1c4e3135304175e26502946f9d8645d9897.tar
nixlib-e494e1c4e3135304175e26502946f9d8645d9897.tar.gz
nixlib-e494e1c4e3135304175e26502946f9d8645d9897.tar.bz2
nixlib-e494e1c4e3135304175e26502946f9d8645d9897.tar.lz
nixlib-e494e1c4e3135304175e26502946f9d8645d9897.tar.xz
nixlib-e494e1c4e3135304175e26502946f9d8645d9897.tar.zst
nixlib-e494e1c4e3135304175e26502946f9d8645d9897.zip
pythonPackages.python-packer: init at 0.1.2
Diffstat (limited to 'pkgs/development/python-modules/python-packer')
-rw-r--r--pkgs/development/python-modules/python-packer/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/python-packer/default.nix b/pkgs/development/python-modules/python-packer/default.nix
new file mode 100644
index 000000000000..3f0c1f8138f9
--- /dev/null
+++ b/pkgs/development/python-modules/python-packer/default.nix
@@ -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 ];
+  };
+}
+