nixpkgs/pkgs/development/python-modules/routes/default.nix

35 lines
728 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, repoze_lru
, six
2020-11-29 17:38:09 +00:00
, soupsieve
, webob
, coverage
, webtest
}:
buildPythonPackage rec {
pname = "Routes";
2020-11-29 14:04:41 +00:00
version = "2.5.1";
src = fetchPypi {
inherit pname version;
2020-11-29 14:04:41 +00:00
sha256 = "b6346459a15f0cbab01a45a90c3d25caf980d4733d628b4cc1952b865125d053";
};
2020-11-29 17:38:09 +00:00
propagatedBuildInputs = [ repoze_lru six soupsieve webob ];
# incompatible with latest soupsieve
doCheck = false;
checkInputs = [ coverage soupsieve webtest ];
pythonImportsCheck = [ "routes" ];
meta = with 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;
};
}