lice: 0.4 -> 0.6 (#112895)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
26256141d1
commit
04e04ead20
@ -1,18 +1,17 @@
|
|||||||
{ lib, fetchFromGitHub, python3Packages }:
|
{ lib, buildPythonPackage, fetchPypi , setuptools, pytestCheckHook }:
|
||||||
|
|
||||||
python3Packages.buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
pname = "lice";
|
||||||
|
version = "0.6";
|
||||||
|
|
||||||
version = "0.4";
|
src = fetchPypi {
|
||||||
name = "lice-${version}";
|
inherit pname version;
|
||||||
|
sha256 = "0skyyirbidknfdzdvsjga8zb4ar6xpd5ilvz11dfm2a9yxh3d59d";
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "licenses";
|
|
||||||
repo = "lice";
|
|
||||||
rev = version;
|
|
||||||
sha256 = "0yxf70fi8ds3hmwjply2815k466r99k8n22r0ppfhwjvp3rn60qx";
|
|
||||||
fetchSubmodules = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ setuptools ];
|
||||||
|
|
||||||
|
checkInputs = [ pytestCheckHook ];
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Print license based on selection and user options";
|
description = "Print license based on selection and user options";
|
||||||
homepage = "https://github.com/licenses/lice";
|
homepage = "https://github.com/licenses/lice";
|
||||||
|
@ -29134,7 +29134,7 @@ in
|
|||||||
|
|
||||||
lkproof = callPackage ../tools/typesetting/tex/lkproof { };
|
lkproof = callPackage ../tools/typesetting/tex/lkproof { };
|
||||||
|
|
||||||
lice = callPackage ../tools/misc/lice {};
|
lice = python3Packages.callPackage ../tools/misc/lice {};
|
||||||
|
|
||||||
m33-linux = callPackage ../misc/drivers/m33-linux { };
|
m33-linux = callPackage ../misc/drivers/m33-linux { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user