mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
mailnag: use setup.py
This commit is contained in:
parent
49f68937c8
commit
b3b438a8fd
1 changed files with 7 additions and 1 deletions
|
@ -6,7 +6,9 @@
|
|||
, withNetworkManager ? true
|
||||
}:
|
||||
|
||||
pythonPackages.buildPythonApplication rec {
|
||||
let
|
||||
inherit (pythonPackages) python;
|
||||
in pythonPackages.buildPythonApplication rec {
|
||||
name = "mailnag-${version}";
|
||||
version = "1.2.1";
|
||||
|
||||
|
@ -31,6 +33,10 @@ pythonPackages.buildPythonApplication rec {
|
|||
pygobject3 dbus-python pyxdg
|
||||
];
|
||||
|
||||
buildPhase = "";
|
||||
|
||||
installPhase = "${python}/bin/python setup.py install --prefix=$out";
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
|
Loading…
Reference in a new issue