depot/third_party/nixpkgs/pkgs/development/python-modules/qtile/wrapper.nix

9 lines
283 B
Nix
Raw Normal View History

{ python3 }:
(python3.withPackages (_: [ python3.pkgs.qtile ])).overrideAttrs (_: {
# restore some qtile attrs, beautify name
inherit (python3.pkgs.qtile) pname version meta;
name = with python3.pkgs.qtile; "${pname}-${version}";
passthru.unwrapped = python3.pkgs.qtile;
})