mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 13:40:28 +03:00
pydocstyle: init at 0.3.2
This commit is contained in:
parent
87b2e17463
commit
a451f97d2f
2 changed files with 25 additions and 0 deletions
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 ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue