 ae46af2a51
			
		
	
	
		ae46af2a51
		
	
	
	
	
		
			
			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-pyfiglet/versions
		
			
				
	
	
		
			20 lines
		
	
	
		
			429 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			429 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { stdenv, buildPythonPackage, fetchPypi }:
 | |
| 
 | |
| buildPythonPackage rec {
 | |
|   version = "0.8.post0";
 | |
|   pname = "pyfiglet";
 | |
| 
 | |
|   src = fetchPypi {
 | |
|     inherit pname version;
 | |
|     sha256 = "1kjskfbkm28rajcj0aa0v5w1v4p6r9y0hlhzz2bwsxvwlqg4b519";
 | |
|   };
 | |
| 
 | |
|   doCheck = false;
 | |
| 
 | |
|   meta = with stdenv.lib; {
 | |
|     description = "FIGlet in pure Python";
 | |
|     license     = licenses.gpl2Plus;
 | |
|     maintainers = with maintainers; [ thoughtpolice ];
 | |
|   };
 | |
| }
 |