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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "1k5zvc5fyyrgv33mi3p86a9jn5n0pqffs9cviz92fw6q1kf7zvmr";
  };

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

}