pythonPackages.pyproj: 2.2.1 -> 2.2.2

This commit is contained in:
Jonathan Ringer 2019-08-01 11:27:35 -07:00 committed by Frederik Rietdijk
parent 299c2f030a
commit f0969de28c

View File

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, python, pkgs, pythonOlder, substituteAll { lib, buildPythonPackage, fetchFromGitHub, python, pkgs, pythonOlder, substituteAll
, aenum , aenum
, cython , cython
, pytest , pytest
@ -8,11 +8,13 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pyproj"; pname = "pyproj";
version = "2.2.1"; version = "2.2.2";
src = fetchPypi { src = fetchFromGitHub {
inherit pname version; owner = "pyproj4";
sha256 = "0yigcxwmx5cczipf2mpmy2gq1dnl0635yjvjq86ay47j1j5fd2gc"; repo = "pyproj";
rev = "v${version}rel";
sha256 = "0mb0jczgqh3sma69k7237i38h09gxgmvmddls9hpw4f3131f5ax7";
}; };
# force pyproj to use ${pkgs.proj} # force pyproj to use ${pkgs.proj}