python3Packages.ev3dev2: init at 2.1.0
This commit is contained in:
parent
7c9470a061
commit
8fea010703
2 changed files with 39 additions and 0 deletions
37
pkgs/development/python-modules/ev3dev2/default.nix
Normal file
37
pkgs/development/python-modules/ev3dev2/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, python
|
||||||
|
, pillow
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "ev3dev2";
|
||||||
|
version = "2.1.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "ev3dev";
|
||||||
|
repo = "ev3dev-lang-python";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "XxsiQs3k5xKb+3RewARbvBbxaztdvdq3w5ZMgTq+kRc=";
|
||||||
|
fetchSubmodules = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
echo "${version}\n" > RELEASE-VERSION
|
||||||
|
'';
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ pillow ];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
chmod -R g+rw ./tests/fake-sys/devices/**/*
|
||||||
|
${python.interpreter} -W ignore::ResourceWarning tests/api_tests.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python language bindings for ev3dev";
|
||||||
|
homepage = "https://github.com/ev3dev/ev3dev-lang-python";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ angustrau ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2355,6 +2355,8 @@ in {
|
||||||
|
|
||||||
et_xmlfile = callPackage ../development/python-modules/et_xmlfile { };
|
et_xmlfile = callPackage ../development/python-modules/et_xmlfile { };
|
||||||
|
|
||||||
|
ev3dev2 = callPackage ../development/python-modules/ev3dev2 { };
|
||||||
|
|
||||||
evdev = callPackage ../development/python-modules/evdev { };
|
evdev = callPackage ../development/python-modules/evdev { };
|
||||||
|
|
||||||
eve = callPackage ../development/python-modules/eve { };
|
eve = callPackage ../development/python-modules/eve { };
|
||||||
|
|
Loading…
Reference in a new issue