depot/third_party/nixpkgs/pkgs/development/python-modules/ev3dev2/default.nix
Default email 5cae67db9e Project import generated by Copybara.
GitOrigin-RevId: b59c06dc92f8d03660eb4155754d93a6c34cda83
2021-07-17 23:14:59 +02:00

37 lines
817 B
Nix

{ 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 ];
};
}