all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#34382] [PATCH 4/5] gnu: Add python-docstyle.
@ 2019-02-08  4:10 Brett Gilio
  2019-02-12 22:33 ` bug#34382: " Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Brett Gilio @ 2019-02-08  4:10 UTC (permalink / raw)
  To: 34382

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: [PATCH 4/5] gnu: Add python-docstyle. --]
[-- Type: text/x-patch, Size: 1470 bytes --]

From 0b66f38dd41230611cad44181a81bda38e40619f Mon Sep 17 00:00:00 2001
From: Brett Gilio <brettg@posteo.net>
Date: Thu, 7 Feb 2019 22:04:52 -0600
Subject: [PATCH 4/5] gnu: Add python-docstyle.

* gnu/packages/python-xyz.scm (python-docstyle): New variable.
---
 gnu/packages/python-xyz.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 5c7241621..c41c4a1cd 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -2545,6 +2545,27 @@ Language (TOML) configuration files.")
   (description "An implementation of the JSON RPC 2.0 server library for interoperability with Python.")
   (license license:expat)))
 
+(define-public python-pydocstyle
+  (package
+  (name "python-pydocstyle")
+  (version "3.0.0")
+  (source
+    (origin
+      (method url-fetch)
+      (uri (pypi-uri "pydocstyle" version))
+      (sha256
+        (base32
+          "1m1xv9clkg9lgzyza6dnj359z04vh5g0h49nhzghv7lg81gchhap"))))
+  (build-system python-build-system)
+  (propagated-inputs
+   `(("python-six" ,python-six)
+     ("python-snowballstemmer" ,python-snowballstemmer)))
+  (home-page
+    "https://github.com/PyCQA/pydocstyle/")
+  (synopsis "Python docstring style checker")
+  (description "A docstring style checker/linter for the Python language server.")
+  (license license:expat)))
+
 (define-public python-black
   (package
     (name "python-black")
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#34382: [PATCH 4/5] gnu: Add python-docstyle.
  2019-02-08  4:10 [bug#34382] [PATCH 4/5] gnu: Add python-docstyle Brett Gilio
@ 2019-02-12 22:33 ` Ludovic Courtès
  2019-02-13  0:50   ` [bug#34382] " Brett Gilio
  2019-02-13  0:51   ` Brett Gilio
  0 siblings, 2 replies; 4+ messages in thread
From: Ludovic Courtès @ 2019-02-12 22:33 UTC (permalink / raw)
  To: Brett Gilio; +Cc: 34382-done

Brett Gilio <brettg@posteo.net> skribis:

>>From 0b66f38dd41230611cad44181a81bda38e40619f Mon Sep 17 00:00:00 2001
> From: Brett Gilio <brettg@posteo.net>
> Date: Thu, 7 Feb 2019 22:04:52 -0600
> Subject: [PATCH 4/5] gnu: Add python-docstyle.
>
> * gnu/packages/python-xyz.scm (python-docstyle): New variable.

Pushed as well.

This series ended up taking me more time than I thought.  :-)
First the patches were sent in reverse order, which I only realized
later.  Then each patch had tiny issues (indentation, inappropriate
description, code duplication, etc.) that I ended up fixing because they
looked tiny at first…

Please pay more attention to these things in the future.

Regardless, thank you for the patches!

Ludo’.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#34382] [PATCH 4/5] gnu: Add python-docstyle.
  2019-02-12 22:33 ` bug#34382: " Ludovic Courtès
@ 2019-02-13  0:50   ` Brett Gilio
  2019-02-13  0:51   ` Brett Gilio
  1 sibling, 0 replies; 4+ messages in thread
From: Brett Gilio @ 2019-02-13  0:50 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 34382-done


Ludovic Courtès writes:

> Brett Gilio <brettg@posteo.net> skribis:
>
>>>From 0b66f38dd41230611cad44181a81bda38e40619f Mon Sep 17 00:00:00 2001
>> From: Brett Gilio <brettg@posteo.net>
>> Date: Thu, 7 Feb 2019 22:04:52 -0600
>> Subject: [PATCH 4/5] gnu: Add python-docstyle.
>>
>> * gnu/packages/python-xyz.scm (python-docstyle): New variable.
>
> Pushed as well.
>
> This series ended up taking me more time than I thought.  :-)
> First the patches were sent in reverse order, which I only realized
> later.  Then each patch had tiny issues (indentation, inappropriate
> description, code duplication, etc.) that I ended up fixing because they
> looked tiny at first…
>
> Please pay more attention to these things in the future.
>
> Regardless, thank you for the patches!
>
> Ludo’.

Thank you Ludo,

This was my first series, so I appreciate the comments you gave me for
feedback and I will be more diligent in the future!

Brett

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#34382] [PATCH 4/5] gnu: Add python-docstyle.
  2019-02-12 22:33 ` bug#34382: " Ludovic Courtès
  2019-02-13  0:50   ` [bug#34382] " Brett Gilio
@ 2019-02-13  0:51   ` Brett Gilio
  1 sibling, 0 replies; 4+ messages in thread
From: Brett Gilio @ 2019-02-13  0:51 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 34382-done


Ludovic Courtès writes:

> Brett Gilio <brettg@posteo.net> skribis:
>
>>>From 0b66f38dd41230611cad44181a81bda38e40619f Mon Sep 17 00:00:00 2001
>> From: Brett Gilio <brettg@posteo.net>
>> Date: Thu, 7 Feb 2019 22:04:52 -0600
>> Subject: [PATCH 4/5] gnu: Add python-docstyle.
>>
>> * gnu/packages/python-xyz.scm (python-docstyle): New variable.
>
> Pushed as well.
>
> This series ended up taking me more time than I thought.  :-)
> First the patches were sent in reverse order, which I only realized
> later.  Then each patch had tiny issues (indentation, inappropriate
> description, code duplication, etc.) that I ended up fixing because they
> looked tiny at first…
>
> Please pay more attention to these things in the future.
>
> Regardless, thank you for the patches!
>
> Ludo’.

This was my first patch series, so I appreciate your feedback to help me
make sure that I am doing this correct in the future!

Thank you as always

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-02-13  0:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-08  4:10 [bug#34382] [PATCH 4/5] gnu: Add python-docstyle Brett Gilio
2019-02-12 22:33 ` bug#34382: " Ludovic Courtès
2019-02-13  0:50   ` [bug#34382] " Brett Gilio
2019-02-13  0:51   ` Brett Gilio

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.