Commit f2357009 authored by Robert Schütz's avatar Robert Schütz
Browse files

python3Packages.wassima: init at 2.0.1

parent dd4af1f3
Loading
Loading
Loading
Loading
+39 −0
Original line number Diff line number Diff line
{
  buildPythonPackage,
  fetchFromGitHub,
  hatchling,
  lib,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "wassima";
  version = "2.0.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "jawah";
    repo = "wassima";
    tag = version;
    hash = "sha256-MUGB8x4+G+B4cknCeiCcTqKwa8Gea8QrRyM4sYbVxdA=";
  };

  build-system = [ hatchling ];

  pythonImportsCheck = [ "wassima" ];

  nativeCheckInputs = [
    pytestCheckHook
  ];

  # tests connect to the internet
  doCheck = false;

  meta = {
    changelog = "https://github.com/jawah/wassima/blob/${src.tag}/CHANGELOG.md";
    description = "Access your OS root certificates with utmost ease";
    homepage = "https://github.com/jawah/wassima";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ dotlambda ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -19687,6 +19687,8 @@ self: super: with self; {
  wasserstein = callPackage ../development/python-modules/wasserstein { };
  wassima = callPackage ../development/python-modules/wassima { };
  wat = callPackage ../development/python-modules/wat { };
  watchdog = callPackage ../development/python-modules/watchdog { };