| 
									
										
										
										
											2019-10-23 00:50:42 -07:00
										 |  |  | { lib, buildPythonPackage, fetchFromGitHub | 
					
						
							|  |  |  | , six | 
					
						
							|  |  |  | , pytest | 
					
						
							|  |  |  | , dateutil | 
					
						
							|  |  |  | }: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | buildPythonPackage rec { | 
					
						
							| 
									
										
										
										
											2020-05-08 23:10:52 +00:00
										 |  |  |   version = "0.7.0"; | 
					
						
							| 
									
										
										
										
											2019-10-23 00:50:42 -07:00
										 |  |  |   pname = "javaproperties"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   src = fetchFromGitHub { | 
					
						
							|  |  |  |     owner = "jwodder"; | 
					
						
							|  |  |  |     repo = pname; | 
					
						
							|  |  |  |     rev = "v${version}"; | 
					
						
							| 
									
										
										
										
											2020-05-08 23:10:52 +00:00
										 |  |  |     sha256 = "14dlzwr4gxlbgjy012i4pqs2rn2rmp21w8n1k1wwjkf26mcvrq5s"; | 
					
						
							| 
									
										
										
										
											2019-10-23 00:50:42 -07:00
										 |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   propagatedBuildInputs = [ six ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   checkInputs = [ dateutil pytest ]; | 
					
						
							|  |  |  |   checkPhase = ''
 | 
					
						
							|  |  |  |     rm tox.ini | 
					
						
							|  |  |  |     pytest -k 'not dumps and not time' --ignore=test/test_propclass.py | 
					
						
							|  |  |  |   '';
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   meta = with lib; { | 
					
						
							|  |  |  |     description = "Microsoft Azure API Management Client Library for Python"; | 
					
						
							|  |  |  |     homepage = "https://github.com/Azure/azure-sdk-for-python"; | 
					
						
							|  |  |  |     license = licenses.mit; | 
					
						
							|  |  |  |     maintainers = with maintainers; [ jonringer ]; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | } |