2021-01-25 08:26:54 +00:00
|
|
|
{ lib, 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
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/anderslime/pytest-pep257";
|
2017-05-27 10:25:35 +01:00
|
|
|
description = "py.test plugin for PEP257";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
2017-01-31 21:19:01 +00:00
|
|
|
}
|