csvs-to-sqlite: 0.9 -> 1.0

This commit is contained in:
Fabian Möller 2019-09-17 16:25:09 +02:00
parent 83686eb1fb
commit 527fc00325
No known key found for this signature in database
GPG Key ID: 70B29D65DD8A7E31

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