-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
python3Packages.csv2md: init at 1.1.1 #236913
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,24 @@ | ||||||||
| { lib | ||||||||
| , buildPythonPackage | ||||||||
| , fetchFromGitHub | ||||||||
| }: | ||||||||
|
|
||||||||
| buildPythonPackage rec { | ||||||||
| pname = "csv2md"; | ||||||||
| version = "1.1.1"; | ||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Could you please set |
||||||||
|
|
||||||||
| src = fetchFromGitHub { | ||||||||
| owner = "lzakharov"; | ||||||||
| repo = pname; | ||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
pname and repo are semantically different, so please avoid reusing pname. |
||||||||
| rev = "v${version}"; | ||||||||
| sha256 = "sha256-fyXM88hawO6Q9pwMgVtjXaPVEaP36TOmoYL0c7RFDZ4="; | ||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||
| }; | ||||||||
|
|
||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you please enable tests with |
||||||||
| meta = { | ||||||||
| homepage = "https://github.com/lzakharov/csv2md"; | ||||||||
| description = "Command line tool for converting CSV files into Markdown tables."; | ||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Please don't include a trailing period. |
||||||||
| license = lib.licenses.mit; | ||||||||
| maintainers = [ lib.maintainers.matthewcroughan ]; | ||||||||
| platforms = lib.platforms.all; | ||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
We don't need to set platforms for python package since it is already set by default. |
||||||||
| }; | ||||||||
| } | ||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems that 1.2.0 was released 3 months ago.
https://github.com/lzakharov/csv2md/releases/tag/v1.2.0