blob: 58c3e02b1113e3c9a3c125b8b8c23f4ea90a54d4 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytest-vcr,
pytestCheckHook,
pyyaml,
requests,
untangle,
}:
buildPythonPackage rec {
pname = "pyqvrpro";
version = "0.52";
format = "setuptools";
src = fetchFromGitHub {
owner = "oblogic7";
repo = "pyqvrpro";
rev = "v${version}";
hash = "sha256-lOd2AqnrkexNqT/usmJts5NW7vJtV8CRsliYgkhgRaU=";
};
propagatedBuildInputs = [
pyyaml
requests
untangle
];
nativeCheckInputs = [
pytest-vcr
pytestCheckHook
];
pythonImportsCheck = [ "pyqvrpro" ];
meta = {
description = "Module for interfacing with QVR Pro API";
homepage = "https://github.com/oblogic7/pyqvrpro";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|