about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/uritemplate/default.nix
blob: c469fd8dd1cca229e1f096fba77ccadbb47bd2c1 (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
24
25
26
{ lib, buildPythonPackage, fetchPypi, simplejson, pytest, glibcLocales }:

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

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

  propagatedBuildInputs = [ simplejson ];

  checkInputs = [ pytest glibcLocales ];

  checkPhase = ''
    LC_ALL=en_US.UTF-8 py.test
  '';

  meta = with lib; {
    homepage = https://github.com/python-hyper/uritemplate;
    description = "URI template parsing for Humans";
    license = with licenses; [ asl20 bsd3 ];
    maintainers = with maintainers; [ matthiasbeyer ];
  };
}