nur-packages

My NUR packages
git clone git://git.sikmir.ru/nur-packages
Log | Files | Refs | README | LICENSE

default.nix (635B)


      1 {
      2   lib,
      3   fetchFromGitHub,
      4   python3Packages,
      5   geoarrow-pyarrow,
      6 }:
      7 
      8 python3Packages.buildPythonPackage rec {
      9   pname = "geoarrow-pandas";
     10   inherit (geoarrow-pyarrow) version src;
     11   pyproject = true;
     12 
     13   sourceRoot = "${src.name}/geoarrow-pandas";
     14 
     15   build-system = with python3Packages; [ setuptools-scm ];
     16 
     17   dependencies = with python3Packages; [
     18     geoarrow-pyarrow
     19     pandas
     20     pyarrow
     21   ];
     22 
     23   meta = {
     24     description = "Python implementation of the GeoArrow specification";
     25     homepage = "https://github.com/geoarrow/geoarrow-python";
     26     license = lib.licenses.asl20;
     27     maintainers = [ lib.maintainers.sikmir ];
     28   };
     29 }