nixpkgs/pkgs/development/python-modules/cligj/default.nix

33 lines
684 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchFromGitHub
2017-09-05 09:42:53 +02:00
, click, pytest, glibcLocales
2017-09-03 11:02:28 +02:00
}:
buildPythonPackage rec {
pname = "cligj";
version = "0.5.0";
2017-09-03 11:02:28 +02:00
2017-09-05 09:42:53 +02:00
src = fetchFromGitHub {
owner = "mapbox";
repo = "cligj";
rev = version;
sha256 = "13vlibbn86dhh6iy8k831vsa249746jnk419wcr9vvr3pqxml6g2";
2017-09-03 11:02:28 +02:00
};
propagatedBuildInputs = [
click
];
2017-09-05 09:42:53 +02:00
checkInputs = [ pytest glibcLocales ];
checkPhase = ''
LC_ALL=en_US.utf-8 pytest tests
'';
meta = with lib; {
2017-09-03 11:02:28 +02:00
description = "Click params for commmand line interfaces to GeoJSON";
homepage = "https://github.com/mapbox/cligj";
2017-09-03 11:02:28 +02:00
license = licenses.bsd3;
maintainers = with maintainers; [ knedlsepp ];
};
}