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