about summary refs log tree commit diff
path: root/pkgs/development/python-modules/gflags
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-11-05 13:16:18 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2017-11-05 20:11:43 +0100
commit9c5bf726e5aba99fb786ee7206e1d9481aac97b4 (patch)
treeddab81adb32be64aae41a7791236503e7ad254d4 /pkgs/development/python-modules/gflags
parent5db01ac420ca07b4a23aa0f85a4ce386ab029467 (diff)
downloadnixlib-9c5bf726e5aba99fb786ee7206e1d9481aac97b4.tar
nixlib-9c5bf726e5aba99fb786ee7206e1d9481aac97b4.tar.gz
nixlib-9c5bf726e5aba99fb786ee7206e1d9481aac97b4.tar.bz2
nixlib-9c5bf726e5aba99fb786ee7206e1d9481aac97b4.tar.lz
nixlib-9c5bf726e5aba99fb786ee7206e1d9481aac97b4.tar.xz
nixlib-9c5bf726e5aba99fb786ee7206e1d9481aac97b4.tar.zst
nixlib-9c5bf726e5aba99fb786ee7206e1d9481aac97b4.zip
python.pkgs: maintenance updates
Diffstat (limited to 'pkgs/development/python-modules/gflags')
-rw-r--r--pkgs/development/python-modules/gflags/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/gflags/default.nix b/pkgs/development/python-modules/gflags/default.nix
index 48fff7230569..f73ff2b4686d 100644
--- a/pkgs/development/python-modules/gflags/default.nix
+++ b/pkgs/development/python-modules/gflags/default.nix
@@ -1,13 +1,13 @@
 { lib, buildPythonPackage, fetchPypi, six, pytest }:
 
 buildPythonPackage rec {
-  version = "3.1.1";
+  version = "3.1.2";
   name = "gflags-${version}";
 
   src = fetchPypi {
     inherit version;
     pname = "python-gflags";
-    sha256 = "0qvcizlz6r4511kl4jlg6fr34y1ka956dr2jj1q0qcklr94n9zxa";
+    sha256 = "40ae131e899ef68e9e14aa53ca063839c34f6a168afe622217b5b875492a1ee2";
   };
 
   buildInputs = [ pytest ];