2017-01-31 21:11:36 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchurl, pytest, mock }:
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "pep257";
|
2017-01-31 21:11:36 +00:00
|
|
|
version = "0.7.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/GreenSteam/pep257/archive/${version}.tar.gz";
|
|
|
|
sha256 = "1ldpgil0kaf6wz5gvl9xdx35a62vc6bmgi3wbh9320dj5v2qk4wh";
|
|
|
|
};
|
|
|
|
|
2019-01-05 10:54:27 +00:00
|
|
|
checkInputs = [ pytest mock ];
|
2017-01-31 21:11:36 +00:00
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
py.test
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/GreenSteam/pep257/;
|
|
|
|
description = "Python docstring style checker";
|
|
|
|
longDescription = "Static analysis tool for checking compliance with Python PEP 257.";
|
2017-03-10 19:27:11 +00:00
|
|
|
license = licenses.mit;
|
2017-01-31 21:11:36 +00:00
|
|
|
};
|
|
|
|
}
|