Merge pull request #68965 from B4dM4n/csvs-to-sqlite-1.0

csvs-to-sqlite: 0.9 -> 1.0
This commit is contained in:
Maximilian Bosch 2019-09-20 10:32:51 +02:00 committed by GitHub
commit 6c3bf80a75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, isPy3k
, pytestrunner
, click
, dateparser
@ -12,17 +13,16 @@
buildPythonPackage rec {
pname = "csvs-to-sqlite";
version = "0.9";
version = "1.0";
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "simonw";
repo = pname;
rev = version;
sha256 = "0js86m4kj70g9n9gagr8l6kgswqllg6hn1xa3yvxwv95i59ihpz5";
sha256 = "0n80y9a6qhbhhbz64jdpscx0nha9jn9nygp9nkgszmw04ri5j5hm";
};
buildInputs = [ pytestrunner ];
propagatedBuildInputs = [
click
dateparser