summary refs log tree commit diff
path: root/pkgs/development/python-modules/uritemplate/default.nix
blob: 531d34f9a8d73b8361bd911131ffe5aa47898723 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, buildPythonPackage, fetchPypi, simplejson }:

buildPythonPackage rec {
  pname = "uritemplate";
  version = "3.0.0";

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

  # No tests in archive
  doCheck = false;

  propagatedBuildInputs = [ simplejson ];

  meta = with lib; {
    homepage = https://github.com/uri-templates/uritemplate-py;
    description = "Python implementation of URI Template";
    license = licenses.asl20;
    maintainers = with maintainers; [ matthiasbeyer ];
  };
}