Merge pull request #106177 from r-ryantm/auto-update/csvs-to-sqlite

This commit is contained in:
Sandro 2020-12-07 18:08:17 +01:00 committed by GitHub
commit 17cba80153
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View file

@ -13,14 +13,14 @@
buildPythonPackage rec {
pname = "csvs-to-sqlite";
version = "1.1";
version = "1.2";
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "simonw";
repo = pname;
rev = version;
sha256 = "1xi9d8l1sf9vixzvqpz8lvhl6yqmz9x5659nvpsxinl317qzmc8m";
sha256 = "0p99cg76d3s7jxvigh5ad04dzhmr6g62qzzh4i6h7x9aiyvdhvk4";
};
postPatch = ''

View file

@ -1,4 +1,4 @@
{ lib
{ stdenv
, pythonOlder
, buildPythonPackage
, fetchFromGitHub
@ -36,10 +36,12 @@ buildPythonPackage rec {
pythonImportsCheck = [ "pygmt" ];
meta = with lib; {
meta = with stdenv.lib; {
description = "A Python interface for the Generic Mapping Tools";
homepage = "https://github.com/GenericMappingTools/pygmt";
license = licenses.bsd3;
# pygmt.exceptions.GMTCLibNotFoundError: Error loading the GMT shared library '/nix/store/r3xnnqgl89vrnq0kzxx0bmjwzks45mz8-gmt-6.1.1/lib/libgmt.dylib'
broken = stdenv.isDarwin;
maintainers = with maintainers; [ sikmir ];
};
}