evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / cligj / default.nix
blob2b22ba792ca4117e43a8e77d16c3863fff3c27ed
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   click,
6   pytest,
7   glibcLocales,
8 }:
10 buildPythonPackage rec {
11   pname = "cligj";
12   version = "0.7.2";
13   format = "setuptools";
15   src = fetchFromGitHub {
16     owner = "mapbox";
17     repo = "cligj";
18     rev = version;
19     hash = "sha256-0f9+I6ozX93Vn0l7+WR0mpddDZymJQ3+Krovt6co22Y=";
20   };
22   propagatedBuildInputs = [ click ];
24   nativeCheckInputs = [
25     pytest
26     glibcLocales
27   ];
29   checkPhase = ''
30     LC_ALL=en_US.utf-8 pytest tests
31   '';
33   meta = with lib; {
34     description = "Click params for command line interfaces to GeoJSON";
35     homepage = "https://github.com/mapbox/cligj";
36     license = licenses.bsd3;
37     maintainers = with maintainers; [ knedlsepp ];
38   };