mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
24 lines
642 B
Nix
24 lines
642 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook, mock }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pep257";
|
|
version = "0.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "GreenSteam";
|
|
repo = "pep257";
|
|
rev = version;
|
|
sha256 = "sha256-RkE9kkNkRTmZ8zJVwQzMsxU1hcjlxX6UA+ehnareynQ=";
|
|
};
|
|
|
|
checkInputs = [ pytestCheckHook mock ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/GreenSteam/pep257/";
|
|
description = "Python docstring style checker";
|
|
longDescription = "Static analysis tool for checking compliance with Python PEP 257.";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|