pydocstyle: init at 0.3.2
This commit is contained in:
parent
87b2e17463
commit
a451f97d2f
23
pkgs/development/python-modules/pydocstyle/default.nix
Normal file
23
pkgs/development/python-modules/pydocstyle/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, snowballstemmer, configparser,
|
||||
pytest, pytestpep8, mock, pathlib }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pydocstyle";
|
||||
version = "2.1.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "15ssv8l6cvrmzgwcdzw76rnl4np3qf0dbwr1wsx76y0hc7lwsnsd";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ snowballstemmer configparser ];
|
||||
|
||||
checkInputs = [ pytest pytestpep8 mock pathlib ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Python docstring style checker";
|
||||
homepage = https://github.com/PyCQA/pydocstyle/;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ dzabraev ];
|
||||
};
|
||||
}
|
@ -281,6 +281,8 @@ in {
|
||||
|
||||
pydbus = callPackage ../development/python-modules/pydbus { };
|
||||
|
||||
pydocstyle = callPackage ../development/python-modules/pydocstyle { };
|
||||
|
||||
pyexiv2 = disabledIf isPy3k (callPackage ../development/python-modules/pyexiv2 {});
|
||||
|
||||
py3exiv2 = callPackage ../development/python-modules/py3exiv2 { };
|
||||
|
Loading…
Reference in New Issue
Block a user