8 buildPythonPackage rec {
9 pname = "python-ev3dev2";
11 format = "setuptools";
13 src = fetchFromGitHub {
15 repo = "ev3dev-lang-python";
17 sha256 = "XxsiQs3k5xKb+3RewARbvBbxaztdvdq3w5ZMgTq+kRc=";
18 fetchSubmodules = true;
22 echo "${version}" > RELEASE-VERSION
25 propagatedBuildInputs = [ pillow ];
28 chmod -R g+rw ./tests/fake-sys/devices/**/*
29 ${python.interpreter} -W ignore::ResourceWarning tests/api_tests.py
33 description = "Python language bindings for ev3dev";
34 homepage = "https://github.com/ev3dev/ev3dev-lang-python";
35 license = with licenses; [ mit ];
36 maintainers = with maintainers; [ emilytrau ];