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