silx: 2.1.1 -> 2.1.2 (#361612)
[NixPkgs.git] / pkgs / development / python-modules / python-snap7 / default.nix
blob80422b7cf258332738578dfa9f066e3d8fe031f5
2   lib,
3   buildPythonPackage,
4   snap7,
5   fetchFromGitHub,
6   setuptools,
7   pythonOlder,
8 }:
10 buildPythonPackage rec {
11   pname = "python-snap7";
12   version = "1.4.1";
13   pyproject = true;
15   disabled = pythonOlder "3.6";
17   src = fetchFromGitHub {
18     owner = "gijzelaerr";
19     repo = "python-snap7";
20     rev = "refs/tags/${version}";
21     hash = "sha256-CqLG5/U2k7WdZL5LfcFAnV1Q8HcIU7l36gi51lgB39s=";
22   };
24   prePatch = ''
25     substituteInPlace snap7/common.py \
26       --replace "lib_location = None" "lib_location = '${snap7}/lib/libsnap7.so'"
27   '';
29   build-system = [ setuptools ];
31   # Tests require root privileges to open privileged ports
32   doCheck = false;
34   pythonImportsCheck = [
35     "snap7"
36     "snap7.util"
37   ];
39   meta = with lib; {
40     description = "Python wrapper for the snap7 PLC communication library";
41     mainProgram = "snap7-server";
42     homepage = "https://github.com/gijzelaerr/python-snap7";
43     license = licenses.mit;
44     maintainers = with maintainers; [ freezeboy ];
45   };