linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pytest-pep257 / default.nix
blob827386786b79531b7b6d5387cf3fdba810d070a8
1 { lib, buildPythonPackage, fetchPypi, pytest, pep257 }:
3 buildPythonPackage rec {
4   pname = "pytest-pep257";
5   version = "0.0.5";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "082v3d5k4331x53za51kl8zxsndsw1pcyf1xdfpb2gjdjrhixb8w";
10   };
12   buildInputs = [ pytest ];
13   propagatedBuildInputs = [ pep257 ];
15   meta = with lib; {
16     homepage = "https://github.com/anderslime/pytest-pep257";
17     description = "py.test plugin for PEP257";
18     license = licenses.mit;
19   };