| 
									
										
										
										
											2018-07-15 11:16:32 -04:00
										 |  |  | { lib, buildPythonPackage, fetchPypi | 
					
						
							|  |  |  | , pytest, pytestrunner, pytestcov, mock, glibcLocales, lxml, boto3, requests, click, configparser }: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | buildPythonPackage rec { | 
					
						
							| 
									
										
										
										
											2018-08-30 17:41:32 +02:00
										 |  |  |   version = "0.12.1"; | 
					
						
							| 
									
										
										
										
											2018-07-15 11:16:32 -04:00
										 |  |  |   pname = "aws-adfs"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   src = fetchPypi { | 
					
						
							|  |  |  |     inherit pname version; | 
					
						
							| 
									
										
										
										
											2018-08-30 17:41:32 +02:00
										 |  |  |     sha256 = "72725d7005252b96ccfa9719fe4beec2b86301bff894d4d97a50fc1d05393fd8"; | 
					
						
							| 
									
										
										
										
											2018-07-15 11:16:32 -04:00
										 |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   # Relax version constraint | 
					
						
							|  |  |  |   patchPhase = ''
 | 
					
						
							|  |  |  |     sed -i 's/coverage < 4/coverage/' setup.py | 
					
						
							|  |  |  |   '';
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   # Test suite writes files to $HOME/.aws/, or /homeless-shelter if unset | 
					
						
							|  |  |  |   HOME = "."; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   # Required for python3 tests, along with glibcLocales | 
					
						
							|  |  |  |   LC_ALL = "en_US.UTF-8"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   checkInputs = [ glibcLocales pytest pytestrunner pytestcov mock ]; | 
					
						
							|  |  |  |   propagatedBuildInputs = [ lxml boto3 requests click configparser ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   meta = { | 
					
						
							|  |  |  |     description = "Command line tool to ease aws cli authentication against ADFS"; | 
					
						
							|  |  |  |     homepage = https://github.com/venth/aws-adfs; | 
					
						
							|  |  |  |     license = lib.licenses.psfl; | 
					
						
							|  |  |  |     maintainers = [ lib.maintainers.bhipple ]; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | } |