fix(qtile): generate a PEP440-compliant version

Setuptools fails to build Qtile otherwise.
This commit is contained in:
Infinidoge 2023-04-06 10:51:27 -04:00
parent 84371e603d
commit 82561bb9e0

View file

@ -16,7 +16,8 @@
let
unwrapped = python3Packages.buildPythonPackage rec {
inherit (source) pname version src;
inherit (source) pname src;
version = "0.0.0+${source.version}";
patches = [
./patches/qtile-fix-restart.patch # https://github.com/NixOS/nixpkgs/issues/139568