Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Commit

Permalink
python3-pyproj: format with nixfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
imincik committed Jun 6, 2024
1 parent 92b4a0b commit cfda621
Showing 1 changed file with 27 additions and 21 deletions.
48 changes: 27 additions & 21 deletions pkgs/pyproj/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, python
, proj
, pythonOlder
, substituteAll
, cython
, pytestCheckHook
, mock
, certifi
, numpy
, shapely
, pandas
, xarray
{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
pytestCheckHook,
pythonOlder,
substituteAll,

certifi,
cython,
mock,
numpy,
pandas,
proj,
shapely,
xarray,
}:

buildPythonPackage rec {
Expand Down Expand Up @@ -40,16 +42,14 @@ buildPythonPackage rec {
nativeBuildInputs = [ cython ];
buildInputs = [ proj ];

propagatedBuildInputs = [
certifi
];
propagatedBuildInputs = [ certifi ];

nativeCheckInputs = [
pytestCheckHook
mock
numpy
shapely
pandas
pytestCheckHook
shapely
xarray
];

Expand Down Expand Up @@ -110,6 +110,12 @@ buildPythonPackage rec {
homepage = "https://github.com/pyproj4/pyproj";
changelog = "https://github.com/pyproj4/pyproj/blob/${src.rev}/docs/history.rst";
license = licenses.mit;
maintainers = with maintainers; teams.geospatial.members ++ [ lsix dotlambda ];
maintainers =
with maintainers;
teams.geospatial.members
++ [
lsix
dotlambda
];
};
}

0 comments on commit cfda621

Please sign in to comment.