My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pydocstyle/default.nix

41 lines
766 B

{ lib
, buildPythonPackage
, isPy3k
, fetchFromGitHub
, snowballstemmer
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pydocstyle";
version = "6.1.1";
disabled = !isPy3k;
format = "setuptools";
src = fetchFromGitHub {
owner = "PyCQA";
repo = pname;
rev = version;
sha256 = "sha256-j0WMD2qKDdMaKG2FxrrM/O7zX4waJ1afaRPRv70djkE=";
};
propagatedBuildInputs = [
snowballstemmer
];
checkInputs = [
pytestCheckHook
];
disabledTestPaths = [
"src/tests/test_integration.py" # runs pip install
];
meta = with lib; {
description = "Python docstring style checker";
homepage = "https://github.com/PyCQA/pydocstyle";
license = licenses.mit;
maintainers = with maintainers; [ dzabraev ];
};
}