blob: 0cda377ed6bcf572ae2700b08001e7e762e5477a (
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
42
43
44
45
46
47
48
49
50
51
|
{
aiohttp,
aresponses,
attrs,
buildPythonPackage,
cryptography,
fetchFromGitHub,
lib,
poetry-core,
pytestCheckHook,
pytz,
}:
buildPythonPackage rec {
pname = "pyseventeentrack";
version = "1.1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "shaiu";
repo = "pyseventeentrack";
tag = "v${version}";
hash = "sha256-XFn9yZbUrvERBQW1PumwtAPHhcyRX9L+JKxE/NZjZys=";
};
build-system = [ poetry-core ];
pythonRelaxDeps = [ "cryptography" ];
dependencies = [
aiohttp
attrs
cryptography
pytz
];
pythonImportsCheck = [ "pyseventeentrack" ];
nativeCheckInputs = [
aresponses
pytestCheckHook
];
meta = {
changelog = "https://github.com/shaiu/pyseventeentrack/releases/tag/v${version}";
description = "Simple Python API for 17track.net";
homepage = "https://github.com/shaiu/pyseventeentrack";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|