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-sphinxcontrib-plantuml/versions
		
			
				
	
	
		
			29 lines
		
	
	
		
			586 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			586 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ stdenv
 | 
						|
, buildPythonPackage
 | 
						|
, fetchPypi
 | 
						|
, sphinx
 | 
						|
, plantuml
 | 
						|
}:
 | 
						|
 | 
						|
buildPythonPackage rec {
 | 
						|
  pname = "sphinxcontrib-plantuml";
 | 
						|
  version = "0.17.1";
 | 
						|
 | 
						|
  src = fetchPypi {
 | 
						|
    inherit pname version;
 | 
						|
    sha256 = "1amvczdin078ia1ax2379lklxr0bwjsrin96174dvssxpzjl04cc";
 | 
						|
  };
 | 
						|
 | 
						|
  # No tests included.
 | 
						|
  doCheck = false;
 | 
						|
 | 
						|
  propagatedBuildInputs = [ sphinx plantuml ];
 | 
						|
 | 
						|
  meta = with stdenv.lib; {
 | 
						|
    description = "Provides a Sphinx domain for embedding UML diagram with PlantUML";
 | 
						|
    homepage = "https://github.com/sphinx-contrib/plantuml/";
 | 
						|
    license = with licenses; [ bsd2 ];
 | 
						|
  };
 | 
						|
 | 
						|
}
 |