Merge pull request #137442 from asbachb/fixup/csvs-to-sqlite

csvs-to-sqlite: linking `click` version `7` explicitly to pass build
This commit is contained in:
Robert Schütz
2021-09-14 16:08:12 -07:00
committed by GitHub
3 changed files with 13 additions and 15 deletions
@@ -1,44 +0,0 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, isPy3k
, click
, dateparser
, pandas
, py-lru-cache
, six
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "csvs-to-sqlite";
version = "1.2";
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "simonw";
repo = pname;
rev = version;
sha256 = "0p99cg76d3s7jxvigh5ad04dzhmr6g62qzzh4i6h7x9aiyvdhvk4";
};
propagatedBuildInputs = [
click
dateparser
pandas
py-lru-cache
six
];
checkInputs = [
pytestCheckHook
];
meta = with lib; {
description = "Convert CSV files into a SQLite database";
homepage = "https://github.com/simonw/csvs-to-sqlite";
license = licenses.asl20;
maintainers = [ maintainers.costrouc ];
};
}