python3Packages.plux: init at 1.3.1

This commit is contained in:
Jonathan Ringer 2022-08-23 14:43:19 -07:00 committed by Jonathan Ringer
parent 474faf3a39
commit bb97203045
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, stevedore
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "plux";
version = "1.3.1";
format = "pyproject";
# Tests are not available from PyPi
src = fetchFromGitHub {
owner = "localstack";
repo = "plux";
# Request for proper tags: https://github.com/localstack/plux/issues/4
rev = "a412ab0a0d7d17c3b5e1f560b7b31dc1876598f7";
sha256 = "sha256-zFwrRc93R4cXah7zYXjVLBIeBpDedsInxuyXOyBI8SA=";
};
propagatedBuildInputs = [
stevedore
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "plugin.core" ];
meta = with lib; {
description = "Dynamic code loading framework for building pluggable Python distributions";
homepage = "https://github.com/localstack/plux";
license = licenses.asl20;
maintainers = with maintainers; [ jonringer ];
};
}

View file

@ -7059,6 +7059,8 @@ in {
plumbum = callPackage ../development/python-modules/plumbum { };
plux = callPackage ../development/python-modules/plux { };
ply = callPackage ../development/python-modules/ply { };
plyer = callPackage ../development/python-modules/plyer { };