summary refs log tree commit diff
path: root/pkgs/development/python-modules/progressbar
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2018-03-10 08:58:27 +0100
committerElis Hirwing <elis@hirwing.se>2018-03-10 12:05:33 +0100
commit6c55f5479d65d99b8dc8f0bdc0ea2a5a8096e15d (patch)
treea4f5f05ad50afed64c5e77f93a7af6d9791eed7d /pkgs/development/python-modules/progressbar
parent14464b1dc5aa480e030ef8ba25da1899160e81fb (diff)
downloadnixlib-6c55f5479d65d99b8dc8f0bdc0ea2a5a8096e15d.tar
nixlib-6c55f5479d65d99b8dc8f0bdc0ea2a5a8096e15d.tar.gz
nixlib-6c55f5479d65d99b8dc8f0bdc0ea2a5a8096e15d.tar.bz2
nixlib-6c55f5479d65d99b8dc8f0bdc0ea2a5a8096e15d.tar.lz
nixlib-6c55f5479d65d99b8dc8f0bdc0ea2a5a8096e15d.tar.xz
nixlib-6c55f5479d65d99b8dc8f0bdc0ea2a5a8096e15d.tar.zst
nixlib-6c55f5479d65d99b8dc8f0bdc0ea2a5a8096e15d.zip
progressbar: move to own file and fix homepage
Diffstat (limited to 'pkgs/development/python-modules/progressbar')
-rw-r--r--pkgs/development/python-modules/progressbar/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/progressbar/default.nix b/pkgs/development/python-modules/progressbar/default.nix
new file mode 100644
index 000000000000..18dfa693f5b5
--- /dev/null
+++ b/pkgs/development/python-modules/progressbar/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, buildPythonPackage, fetchPypi }:
+
+buildPythonPackage rec {
+  pname = "progressbar";
+  version = "2.2";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "dfee5201237ca0e942baa4d451fee8bf8a54065a337fabe7378b8585aeda56a3";
+  };
+
+  # invalid command 'test'
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    homepage = https://pypi.python.org/pypi/progressbar;
+    description = "Text progressbar library for python";
+    license = licenses.lgpl3Plus;
+    maintainers = with maintainers; [ domenkozar ];
+  };
+}