Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-flask-marshmallow/versions (cherry picked from commit 78d8f66e6c5aa547f71ff89798f44c051913cd66)
		
			
				
	
	
		
			25 lines
		
	
	
		
			547 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			547 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, buildPythonPackage, fetchPypi,
 | 
						|
  flask, six, marshmallow
 | 
						|
}:
 | 
						|
 | 
						|
buildPythonPackage rec {
 | 
						|
  pname = "flask-marshmallow";
 | 
						|
  version = "0.10.0";
 | 
						|
 | 
						|
  meta = {
 | 
						|
    homepage = "https://github.com/marshmallow-code/flask-marshmallow";
 | 
						|
    description = "Flask + marshmallow for beautiful APIs";
 | 
						|
    license = lib.licenses.mit;
 | 
						|
  }; 
 | 
						|
 | 
						|
  src = fetchPypi {
 | 
						|
    inherit pname version;
 | 
						|
    sha256 = "1xvk289628l3pp56gidwhmd54cgdczpsxhxfw0bfcsd120k1svfv";
 | 
						|
  };
 | 
						|
 | 
						|
  propagatedBuildInputs = [ flask marshmallow ];
 | 
						|
  buildInputs = [ six ];
 | 
						|
 | 
						|
  doCheck = false;
 | 
						|
}
 |