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