9 buildPythonPackage rec {
11 pname = "python-gflags";
14 inherit pname version;
15 sha256 = "40ae131e899ef68e9e14aa53ca063839c34f6a168afe622217b5b875492a1ee2";
18 nativeCheckInputs = [ pytest ];
20 propagatedBuildInputs = [ six ];
23 # clashes with our pythhon wrapper (which is in argv0)
24 # AssertionError: 'gflags._helpers_test' != 'nix_run_setup.py'
25 py.test -k 'not testGetCallingModule'
29 homepage = "https://github.com/google/python-gflags";
30 description = "Module for command line handling, similar to Google's gflags for C++";
31 license = lib.licenses.bsd3;