blob: 8caf9a050fe1cc5af0a77fdaa710b9a3110bfd31 (
plain)
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
27
28
29
30
31
32
33
34
35
|
{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "uritemplate";
version = "4.2.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-SAwu0YCHiVWGMyPuoxsO3maHld4YJhf++cbKCebsnQ4=";
};
nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "uritemplate" ];
meta = {
description = "Implementation of RFC 6570 URI templates";
homepage = "https://github.com/python-hyper/uritemplate";
changelog = "https://github.com/python-hyper/uritemplate/blob/${version}/HISTORY.rst";
license = with lib.licenses; [
asl20
bsd3
];
maintainers = with lib.maintainers; [ matthiasbeyer ];
};
}
|