mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-03-17 01:23:48 +00:00
Merge pull request #8700 from lancelotsix/add_pep257_checker
Add pep257 checker
This commit is contained in:
commit
c8e441c3a1
|
@ -2463,6 +2463,24 @@ let
|
|||
};
|
||||
};
|
||||
|
||||
pytestpep257 = buildPythonPackage rec {
|
||||
name = "pytest-pep257-${version}";
|
||||
version = "0.0.1";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/p/pytest-pep257/${name}.tar.gz";
|
||||
sha256 = "003vdkxpx37n0kjqpwgj3314hwk2jfz3nz58db7xh68bf8xy75lk";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self ; [ pytest pep257 ];
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/anderslime/pytest-pep257;
|
||||
description = "py.test plugin for PEP257";
|
||||
license = licenses.mit;
|
||||
};
|
||||
};
|
||||
|
||||
pytestquickcheck = buildPythonPackage rec {
|
||||
name = "pytest-quickcheck-0.8.2";
|
||||
|
||||
|
@ -8896,6 +8914,23 @@ let
|
|||
};
|
||||
};
|
||||
|
||||
pep257 = buildPythonPackage rec {
|
||||
name = "pep257-${version}";
|
||||
version = "0.3.2";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://github.com/GreenSteam/pep257/archive/${version}.tar.gz";
|
||||
sha256 = "0v8aq0xzsa7clazszxl42904c3jpq69lg8a5hg754bqcqf72hfrn";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/GreenSteam/pep257/;
|
||||
description = "Python docstring style checker";
|
||||
longDescription = "Static analysis tool for checking compliance with Python PEP 257.";
|
||||
lecense = licenses.mit;
|
||||
};
|
||||
};
|
||||
|
||||
percol = buildPythonPackage rec {
|
||||
name = "percol-${version}";
|
||||
version = "0.0.8";
|
||||
|
|
Loading…
Reference in a new issue