summary refs log tree commit diff
path: root/pkgs/development/python-modules/click
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2018-03-31 18:33:31 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-04-04 19:45:59 +0200
commit54c4b040850580a520de7f54ce1a106d3e9fb40d (patch)
tree2a49e8bb9fde7aef8c8deac8603b2c58a3fd15ec /pkgs/development/python-modules/click
parent88d0f7ef8fc0c0947e7248797c41a9b4c85ac1ec (diff)
downloadnixpkgs-54c4b040850580a520de7f54ce1a106d3e9fb40d.tar
nixpkgs-54c4b040850580a520de7f54ce1a106d3e9fb40d.tar.gz
nixpkgs-54c4b040850580a520de7f54ce1a106d3e9fb40d.tar.bz2
nixpkgs-54c4b040850580a520de7f54ce1a106d3e9fb40d.tar.lz
nixpkgs-54c4b040850580a520de7f54ce1a106d3e9fb40d.tar.xz
nixpkgs-54c4b040850580a520de7f54ce1a106d3e9fb40d.tar.zst
nixpkgs-54c4b040850580a520de7f54ce1a106d3e9fb40d.zip
pythonPackages.click_5: Move to own file
Diffstat (limited to 'pkgs/development/python-modules/click')
-rw-r--r--pkgs/development/python-modules/click/5_1.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/click/5_1.nix b/pkgs/development/python-modules/click/5_1.nix
new file mode 100644
index 00000000000..d1c39cc5d2c
--- /dev/null
+++ b/pkgs/development/python-modules/click/5_1.nix
@@ -0,0 +1,22 @@
+{ stdenv, buildPythonPackage, fetchPypi }:
+
+buildPythonPackage rec {
+  pname = "click";
+  version = "5.1";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0njsm0wn31l21bi118g5825ma5sa3rwn7v2x4wjd7yiiahkri337";
+  };
+
+  meta = with stdenv.lib; {
+    homepage = http://click.pocoo.org/;
+    description = "Create beautiful command line interfaces in Python";
+    longDescription = ''
+      A Python package for creating beautiful command line interfaces in a
+      composable way, with as little code as necessary.
+    '';
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ mog ];
+  };
+}