Files
nixpkgs/pkgs/development/python-modules/uritemplate/default.nix
T

27 lines
663 B
Nix
Raw Normal View History

2018-04-05 22:13:24 +02:00
{ lib, buildPythonPackage, fetchPypi, simplejson, pytest, glibcLocales }:
2018-04-05 22:05:51 +02:00
buildPythonPackage rec {
pname = "uritemplate";
2018-04-05 22:06:41 +02:00
version = "3.0.0";
2018-04-05 22:05:51 +02:00
src = fetchPypi {
inherit pname version;
2018-04-05 22:06:41 +02:00
sha256 = "c02643cebe23fc8adb5e6becffe201185bf06c40bda5c0b4028a93f1527d011d";
2018-04-05 22:05:51 +02:00
};
propagatedBuildInputs = [ simplejson ];
2018-04-05 22:13:24 +02:00
checkInputs = [ pytest glibcLocales ];
checkPhase = ''
LC_ALL=en_US.UTF-8 py.test
'';
2018-04-05 22:05:51 +02:00
meta = with lib; {
2018-04-05 22:13:24 +02:00
homepage = https://github.com/python-hyper/uritemplate;
description = "URI template parsing for Humans";
license = with licenses; [ asl20 bsd3 ];
2018-04-05 22:05:51 +02:00
maintainers = with maintainers; [ matthiasbeyer ];
};
}