3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #237935 from emilytrau/ev3dev2-build

python3Packages.ev3dev2: fix build failure
This commit is contained in:
Martin Weinelt 2023-06-19 06:48:53 +02:00 committed by GitHub
commit d50f95c6e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 4 deletions

View file

@ -6,7 +6,7 @@
}:
buildPythonPackage rec {
pname = "ev3dev2";
pname = "python-ev3dev2";
version = "2.1.0";
src = fetchFromGitHub {
@ -18,7 +18,7 @@ buildPythonPackage rec {
};
postPatch = ''
echo "${version}\n" > RELEASE-VERSION
echo "${version}" > RELEASE-VERSION
'';
propagatedBuildInputs = [ pillow ];

View file

@ -100,6 +100,7 @@ mapAliases ({
eebrightbox = throw "eebrightbox is unmaintained upstream and has therefore been removed"; # added 2022-02-03
EasyProcess = easyprocess; # added 2023-02-19
email_validator = email-validator; # added 2022-06-22
ev3dev2 = python-ev3dev2; # added 2023-06-19
Fabric = fabric; # addedd 2023-02-19
face_recognition = face-recognition; # added 2022-10-15
face_recognition_models = face-recognition-models; # added 2022-10-15

View file

@ -3354,8 +3354,6 @@ self: super: with self; {
evaluate = callPackage ../development/python-modules/evaluate { };
ev3dev2 = callPackage ../development/python-modules/ev3dev2 { };
evdev = callPackage ../development/python-modules/evdev { };
eve = callPackage ../development/python-modules/eve { };
@ -9856,6 +9854,8 @@ self: super: with self; {
python-ethtool = callPackage ../development/python-modules/python-ethtool { };
python-ev3dev2 = callPackage ../development/python-modules/python-ev3dev2 { };
python_fedora = callPackage ../development/python-modules/python_fedora { };
python-fontconfig = callPackage ../development/python-modules/python-fontconfig { };