Unverified Commit e589a04f authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python312Packages.lml: refactor

parent 546aaa8d
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -4,18 +4,21 @@
  fetchPypi,
  pytestCheckHook,
  mock,
  setuptools,
}:

buildPythonPackage rec {
  pname = "lml";
  version = "0.2.0";
  format = "setuptools";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-jdWvtDZ6WT0c2yFEoFh0zZk49SZr67DJ4UEyAEI8DXQ=";
    hash = "sha256-jdWvtDZ6WT0c2yFEoFh0zZk49SZr67DJ4UEyAEI8DXQ=";
  };

  build-system = [ setuptools ];

  nativeCheckInputs = [
    pytestCheckHook
    mock
@@ -25,8 +28,9 @@ buildPythonPackage rec {
  doCheck = false;

  meta = {
    description = "Load me later. A lazy plugin management system for Python";
    description = "Plugin management system for Python";
    homepage = "http://lml.readthedocs.io/";
    changelog = "https://github.com/python-lml/lml/releases/tag/v${version}";
    license = lib.licenses.bsd3;
    maintainers = [ ];
  };