Merge pull request #63391 from r-ryantm/auto-update/python3.7-rasterio

python37Packages.rasterio: 1.0.23 -> 1.0.24
This commit is contained in:
Mario Rodas 2019-06-18 06:14:30 -05:00 committed by GitHub
commit 9d221d868e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,14 +6,14 @@
buildPythonPackage rec {
pname = "rasterio";
version = "1.0.23";
version = "1.0.24";
# Pypi doesn't ship the tests, so we fetch directly from GitHub
src = fetchFromGitHub {
owner = "mapbox";
repo = "rasterio";
rev = version;
sha256 = "1xypc86prwkv6ypy87g6r1p5y6d6c51vfxd3z6hjd1hv2ks7zjs1";
sha256 = "0k5y4h0c4cjn1xl5fayh3a001kl42vvrhjyhp5r2fwn22z56a02p";
};
checkInputs = [ boto3 pytest pytestcov packaging hypothesis ] ++ lib.optional (!isPy3k) mock;