2018-06-23 14:27:58 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, pytest, pep257 }:
|
2017-05-27 10:25:35 +01:00
|
|
|
|
2017-01-31 21:19:01 +00:00
|
|
|
buildPythonPackage rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "pytest-pep257";
|
|
|
|
version = "0.0.5";
|
2017-01-31 21:19:01 +00:00
|
|
|
|
2018-06-23 14:27:58 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-05-27 10:25:35 +01:00
|
|
|
sha256 = "082v3d5k4331x53za51kl8zxsndsw1pcyf1xdfpb2gjdjrhixb8w";
|
|
|
|
};
|
2017-01-31 21:19:01 +00:00
|
|
|
|
2017-05-27 10:25:35 +01:00
|
|
|
buildInputs = [ pytest ];
|
|
|
|
propagatedBuildInputs = [ pep257 ];
|
2017-01-31 21:19:01 +00:00
|
|
|
|
2017-05-27 10:25:35 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/anderslime/pytest-pep257;
|
|
|
|
description = "py.test plugin for PEP257";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
2017-01-31 21:19:01 +00:00
|
|
|
}
|