Unverified Commit 41d29c89 authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

python312Packages.wadllib: 1.3.9 -> 2.0.0 (#353143)

parents 2aa3826e fb643493
Loading
Loading
Loading
Loading
+11 −8
Original line number Diff line number Diff line
@@ -2,32 +2,35 @@
  lib,
  buildPythonPackage,
  fetchPypi,
  isPy3k,
  setuptools,
  lazr-uri,
}:

buildPythonPackage rec {
  pname = "wadllib";
  version = "1.3.9";
  format = "setuptools";
  version = "2.0.0";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-wL4oM4myKP/ZPNru+44HDyLd98tcd+SMaMOWD98lmEQ=";
    hash = "sha256-HtuvI+T6NP6nDJs4C6oqE5sQhq5InrzMxLO2X8lzdCc=";
  };

  propagatedBuildInputs = [
    setuptools
  build-system = [ setuptools ];

  dependencies = [
    lazr-uri
  ];

  doCheck = isPy3k;
  pythonImportsCheck = [ "wadllib" ];

  # pypi tarball has no tests
  doCheck = false;

  meta = with lib; {
    description = "Navigate HTTP resources using WADL files as guides";
    homepage = "https://launchpad.net/wadllib";
    license = licenses.lgpl3;
    license = licenses.lgpl3Only;
    maintainers = [ ];
  };
}