35 lines
		
	
	
		
			766 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			766 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { stdenv, buildPythonPackage, fetchPypi
 | |
| , six, requests, websocket_client
 | |
| , ipaddress, backports_ssl_match_hostname, docker_pycreds
 | |
| }:
 | |
| buildPythonPackage rec {
 | |
|   version = "3.5.0";
 | |
|   pname = "docker";
 | |
| 
 | |
|   src = fetchPypi {
 | |
|     inherit pname version;
 | |
|     sha256 = "bc693be5a84b3b9e5aaf156068c5c0a445ee5138c638c3fbc857133bf67ebe07";
 | |
|   };
 | |
| 
 | |
|   propagatedBuildInputs = [
 | |
|     six
 | |
|     requests
 | |
|     websocket_client
 | |
|     ipaddress
 | |
|     backports_ssl_match_hostname
 | |
|     docker_pycreds
 | |
|   ];
 | |
| 
 | |
|   # Flake8 version conflict
 | |
|   doCheck = false;
 | |
| 
 | |
|   meta = with stdenv.lib; {
 | |
|     description = "An API client for docker written in Python";
 | |
|     homepage = https://github.com/docker/docker-py;
 | |
|     license = licenses.asl20;
 | |
|     maintainers = with maintainers; [
 | |
|       jgeerds
 | |
|     ];
 | |
|   };
 | |
| }
 | 
