blob: 19d856f5b919875b6c89840b6d195f161abb9842 (
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
36
37
38
39
40
41
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
requests,
setuptools,
testfixtures,
}:
buildPythonPackage rec {
pname = "openerz-api";
version = "0.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "misialq";
repo = "openerz-api";
tag = "v${version}";
hash = "sha256-CwK61StspZJt0TALv76zfibUzlriwp9HRoYOtX9bU+c=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ requests ];
nativeCheckInputs = [
pytestCheckHook
testfixtures
];
pythonImportsCheck = [ "openerz_api" ];
meta = {
description = "Python module to interact with the OpenERZ API";
homepage = "https://github.com/misialq/openerz-api";
changelog = "https://github.com/misialq/openerz-api/releases/tag/v${version}";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|