2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchFromGitHub, python3Packages }:
|
2018-06-17 10:59:07 +01:00
|
|
|
|
|
|
|
python3Packages.buildPythonPackage rec {
|
|
|
|
|
|
|
|
version = "0.4";
|
|
|
|
name = "lice-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "licenses";
|
|
|
|
repo = "lice";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "0yxf70fi8ds3hmwjply2815k466r99k8n22r0ppfhwjvp3rn60qx";
|
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|