biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / lice / default.nix
blobf873907c51efd13091d769b130f3727650069879
1 { lib, buildPythonPackage, fetchPypi , setuptools, pytestCheckHook }:
3 buildPythonPackage rec {
4   pname = "lice";
5   version = "0.6";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "0skyyirbidknfdzdvsjga8zb4ar6xpd5ilvz11dfm2a9yxh3d59d";
10   };
12   propagatedBuildInputs = [ setuptools ];
14   nativeCheckInputs = [ pytestCheckHook ];
15   meta = with lib; {
16     description = "Print license based on selection and user options";
17     homepage = "https://github.com/licenses/lice";
18     license = licenses.bsd3;
19     maintainers = with maintainers; [ swflint ];
20     platforms = platforms.unix;
21     mainProgram = "lice";
22   };