about summary refs log tree commit diff
path: root/pkgs/development/python-modules/wadllib/default.nix
blob: 45b5a473456921382c473e33210edb9e9f94a1cf (plain) (blame)
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
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, setuptools
, lazr-uri
}:

buildPythonPackage rec {
  pname = "wadllib";
  version = "1.3.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "e995691713d3c795d2b36278de8e212241870f46bec6ecba91794ea3cc5bd67d";
  };

  propagatedBuildInputs = [ setuptools lazr-uri ];

  doCheck = isPy3k;

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