Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / uri-template / default.nix
bloba403417b10934d5c8d754016f11104ddd420d334
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , python
5 , pythonOlder
6 , setuptools
7 , setuptools-scm
8 }:
10 buildPythonPackage rec {
11   pname = "uri-template";
12   version = "1.3.0";
13   pyproject = true;
15   disabled = pythonOlder "3.7";
17   src = fetchFromGitHub {
18     owner = "plinss";
19     repo = "uri_template";
20     rev = "refs/tags/v${version}";
21     hash = "sha256-38HFFqM6yfpsPrhIpE639ePy/NbLqKw7gbnE3y8sL3w=";
22   };
24   nativeBuildInputs = [
25     setuptools
26     setuptools-scm
27   ];
29   checkPhase = ''
30     ${python.interpreter} test.py
31   '';
33   pythonImportsCheck = [
34     "uri_template"
35   ];
37   meta = with lib; {
38     description = "An implementation of RFC 6570 URI Templates";
39     homepage = "https://github.com/plinss/uri_template/";
40     license = licenses.mit;
41     maintainers = with maintainers; [ ];
42   };