depot/third_party/nixpkgs/pkgs/tools/misc/lice/default.nix
Default email d419639f9c Project import generated by Copybara.
GitOrigin-RevId: 6b1057b452c55bb3b463f0d7055bc4ec3fd1f381
2021-02-17 18:02:09 +01:00

23 lines
597 B
Nix

{ lib, buildPythonPackage, fetchPypi , setuptools, pytestCheckHook }:
buildPythonPackage rec {
pname = "lice";
version = "0.6";
src = fetchPypi {
inherit pname version;
sha256 = "0skyyirbidknfdzdvsjga8zb4ar6xpd5ilvz11dfm2a9yxh3d59d";
};
propagatedBuildInputs = [ setuptools ];
checkInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Print license based on selection and user options";
homepage = "https://github.com/licenses/lice";
license = licenses.bsd3;
maintainers = with maintainers; [ swflint ];
platforms = platforms.unix;
};
}