biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / csv2md / default.nix
blob43d3c816aa95a653c21fcbccf49d57b22e05db44
1 { lib
2 , fetchFromGitHub
3 , buildPythonPackage
4 }:
6 buildPythonPackage rec {
7   pname = "csv2md";
8   version = "1.3.0";
9   format = "setuptools";
11   src = fetchFromGitHub {
12     owner = "lzakharov";
13     repo = "csv2md";
14     rev = "v${version}";
15     hash = "sha256-INwZRbyJmyDd5SV7PBdqUc/3FO91upTgaxBfP/Giaw4=";
16   };
18   pythonImportsCheck = [ "csv2md" ];
20   meta = {
21     description = "Command line tool for converting CSV files into Markdown tables";
22     homepage = "https://github.com/lzakharov/csv2md";
23     changelog = "https://github.com/lzakharov/csv2md/releases/tag/v${version}";
24     license = lib.licenses.mit;
25     maintainers = with lib.maintainers; [ t4ccer ];
26     mainProgram = "csv2md";
27   };