2021-02-17 13:29:04 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi , setuptools, pytestCheckHook }:
|
2018-06-17 10:59:07 +01:00
|
|
|
|
2021-02-17 13:29:04 +00:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "lice";
|
|
|
|
version = "0.6";
|
2018-06-17 10:59:07 +01:00
|
|
|
|
2021-02-17 13:29:04 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "0skyyirbidknfdzdvsjga8zb4ar6xpd5ilvz11dfm2a9yxh3d59d";
|
2018-06-17 10:59:07 +01:00
|
|
|
};
|
|
|
|
|
2021-02-17 13:29:04 +00:00
|
|
|
propagatedBuildInputs = [ setuptools ];
|
|
|
|
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-11 06:55:05 +01:00
|
|
|
description = "Print license based on selection and user options";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/licenses/lice";
|
2018-06-17 10:59:07 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ swflint ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|