Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / routes / default.nix
blob5e639b557d40f8fc0a261dee07d826633222e45b
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , repoze-lru
5 , six
6 , soupsieve
7 , webob
8 }:
10 buildPythonPackage rec {
11   pname = "routes";
12   version = "2.5.1";
13   format = "setuptools";
15   src = fetchPypi {
16     pname = "Routes";
17     inherit version;
18     sha256 = "b6346459a15f0cbab01a45a90c3d25caf980d4733d628b4cc1952b865125d053";
19   };
21   propagatedBuildInputs = [ repoze-lru six soupsieve webob ];
23   # incompatible with latest soupsieve
24   doCheck = false;
26   pythonImportsCheck = [ "routes" ];
28   meta = with lib; {
29     description = "Re-implementation of the Rails routes system for mapping URLs to application actions";
30     homepage = "https://github.com/bbangert/routes";
31     license = licenses.mit;
32     maintainers = with maintainers; [ ];
33   };