nur-packages

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

default.nix (805B)


      1 { lib, fetchFromGitHub, python3Packages }:
      2 
      3 python3Packages.buildPythonApplication rec {
      4   pname = "gpx-converter";
      5   version = "0-unstable-2023-04-07";
      6 
      7   src = fetchFromGitHub {
      8     owner = "nidhaloff";
      9     repo = "gpx-converter";
     10     rev = "0dac5d7eaf83d7bb99631b52d4d210dc010e4b60";
     11     hash = "sha256-bT94phfkJiOQ8rZn783qOmIph6ck27z18rQQby9uEeg=";
     12   };
     13 
     14   propagatedBuildInputs = with python3Packages; [ gpxpy numpy pandas ];
     15 
     16   nativeCheckInputs = with python3Packages; [ pytestCheckHook pytest-runner ];
     17 
     18   disabledTests = [ "test_gpx_to_dictionary" ];
     19 
     20   meta = with lib; {
     21     description = "Python package for manipulating gpx files and easily convert gpx to other different formats";
     22     inherit (src.meta) homepage;
     23     license = licenses.mit;
     24     maintainers = [ maintainers.sikmir ];
     25   };
     26 }