1{ lib, buildPythonPackage, fetchPypi, pytest, pep257 }: 2 3buildPythonPackage rec { 4 pname = "pytest-pep257"; 5 version = "0.0.5"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "082v3d5k4331x53za51kl8zxsndsw1pcyf1xdfpb2gjdjrhixb8w"; 10 }; 11 12 buildInputs = [ pytest ]; 13 propagatedBuildInputs = [ pep257 ]; 14 15 meta = with lib; { 16 homepage = "https://github.com/anderslime/pytest-pep257"; 17 description = "py.test plugin for PEP257"; 18 license = licenses.mit; 19 }; 20}