1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "pyment"; 5 version = "0.3.3"; 6 7 src = fetchPypi { 8 pname = "Pyment"; 9 inherit version; 10 sha256 = "951a4c52d6791ccec55bc739811169eed69917d3874f5fe722866623a697f39d"; 11 }; 12 13 # Tests are not included in PyPI tarball 14 doCheck = false; 15 16 meta = with lib; { 17 homepage = "https://github.com/dadadel/pyment"; 18 description = "Create, update or convert docstrings in existing Python files, managing several styles"; 19 license = licenses.gpl3; 20 maintainers = with maintainers; [ jethro ]; 21 }; 22}