depot/third_party/nixpkgs/pkgs/development/python-modules/python-ev3dev2/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

39 lines
854 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
python,
pillow,
}:
buildPythonPackage rec {
pname = "python-ev3dev2";
version = "2.1.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "ev3dev";
repo = "ev3dev-lang-python";
rev = version;
sha256 = "XxsiQs3k5xKb+3RewARbvBbxaztdvdq3w5ZMgTq+kRc=";
fetchSubmodules = true;
};
postPatch = ''
echo "${version}" > 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; [ emilytrau ];
};
}