aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/routes/default.nix
blob: 95eebe8ab69d851749c0dc4b522c9db24f2ce087 (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
{ stdenv
, buildPythonPackage
, fetchPypi
, repoze_lru
, six
, soupsieve
, webob
, coverage
, webtest
}:

buildPythonPackage rec {
  pname = "Routes";
  version = "2.5.1";

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

  propagatedBuildInputs = [ repoze_lru six soupsieve webob ];
  # incompatible with latest soupsieve
  doCheck = false;
  checkInputs = [ coverage soupsieve webtest ];

  pythonImportsCheck = [ "routes" ];

  meta = with stdenv.lib; {
    description = "A Python re-implementation of the Rails routes system for mapping URLs to application actions";
    homepage = "http://routes.groovie.org/";
    license = licenses.mit;
  };

}