Files
nixpkgs/pkgs/development/python-modules/cligj/default.nix
Wolfgang Walther c283f32d29 treewide: remove unused with
Auto-fixed by nixf-diagnose.
2025-10-05 10:50:41 +02:00

38 lines
647 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
click,
pytest,
}:
buildPythonPackage rec {
pname = "cligj";
version = "0.7.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "mapbox";
repo = "cligj";
rev = version;
hash = "sha256-0f9+I6ozX93Vn0l7+WR0mpddDZymJQ3+Krovt6co22Y=";
};
propagatedBuildInputs = [ click ];
nativeCheckInputs = [
pytest
];
checkPhase = ''
pytest tests
'';
meta = with lib; {
description = "Click params for command line interfaces to GeoJSON";
homepage = "https://github.com/mapbox/cligj";
license = licenses.bsd3;
maintainers = [ ];
};
}