1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 setuptools, 6 lazr-uri, 7}: 8 9buildPythonPackage rec { 10 pname = "wadllib"; 11 version = "2.0.0"; 12 pyproject = true; 13 14 src = fetchPypi { 15 inherit pname version; 16 hash = "sha256-HtuvI+T6NP6nDJs4C6oqE5sQhq5InrzMxLO2X8lzdCc="; 17 }; 18 19 build-system = [ setuptools ]; 20 21 dependencies = [ 22 lazr-uri 23 ]; 24 25 pythonImportsCheck = [ "wadllib" ]; 26 27 # pypi tarball has no tests 28 doCheck = false; 29 30 meta = with lib; { 31 description = "Navigate HTTP resources using WADL files as guides"; 32 homepage = "https://launchpad.net/wadllib"; 33 license = licenses.lgpl3Only; 34 maintainers = [ ]; 35 }; 36}