11 buildPythonPackage rec {
12 pname = "uri-template";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
20 repo = "uri_template";
21 rev = "refs/tags/v${version}";
22 hash = "sha256-38HFFqM6yfpsPrhIpE639ePy/NbLqKw7gbnE3y8sL3w=";
31 ${python.interpreter} test.py
34 pythonImportsCheck = [ "uri_template" ];
37 description = "Implementation of RFC 6570 URI Templates";
38 homepage = "https://github.com/plinss/uri_template/";
39 license = licenses.mit;