nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 poetry-core,
6 pynacl,
7 requests,
8}:
9
10buildPythonPackage rec {
11 pname = "pynuki";
12 version = "1.6.3";
13 pyproject = true;
14
15 src = fetchFromGitHub {
16 owner = "pschmitt";
17 repo = "pynuki";
18 tag = version;
19 hash = "sha256-PF5FmAuPcJXq8gQ8HyzdtL2HiiUjueT+LAS1lYRvrwM=";
20 };
21
22 nativeBuildInputs = [ poetry-core ];
23
24 propagatedBuildInputs = [
25 pynacl
26 requests
27 ];
28
29 # Project has no tests
30 doCheck = false;
31
32 pythonImportsCheck = [ "pynuki" ];
33
34 meta = {
35 description = "Python bindings for nuki.io bridges";
36 homepage = "https://github.com/pschmitt/pynuki";
37 changelog = "https://github.com/pschmitt/pynuki/releases/tag/${version}";
38 license = with lib.licenses; [ gpl3Only ];
39 maintainers = with lib.maintainers; [ fab ];
40 };
41}