python3Packages.loca: init at 2.0.1
This commit is contained in:
committed by
Jonathan Ringer
parent
278bc2a57b
commit
d6732c5f6a
@@ -0,0 +1,25 @@
|
||||
{ lib, buildPythonPackage, pythonOlder, fetchFromSourcehut }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "loca";
|
||||
version = "2.0.1";
|
||||
format = "flit";
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromSourcehut {
|
||||
owner = "~cnx";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1l6jimw3wd81nz1jrzsfw1zzsdm0jm998xlddcqaq0h38sx69w8g";
|
||||
};
|
||||
|
||||
doCheck = false; # all checks are static analyses
|
||||
pythonImportsCheck = [ "loca" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Local locations";
|
||||
homepage = "https://pypi.org/project/loca";
|
||||
license = licenses.lgpl3Plus;
|
||||
maintainers = [ maintainers.McSinyx ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user