diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-04-26 12:12:12 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-04-26 12:12:12 +0200 |
commit | 98de2045a749b25d031b174c940096b4f5406b9d (patch) | |
tree | 3da1a45ec067551d233bb800eee912d44c5e7fdd /pkgs/notmuch/notmuch-python | |
parent | a2230e848bc85e484ef14163ac90fdb7045855f7 (diff) | |
download | Nix-98de2045a749b25d031b174c940096b4f5406b9d.tar.gz Nix-98de2045a749b25d031b174c940096b4f5406b9d.tar.zst Nix-98de2045a749b25d031b174c940096b4f5406b9d.zip |
Move more packages to split files
Diffstat (limited to 'pkgs/notmuch/notmuch-python')
-rw-r--r-- | pkgs/notmuch/notmuch-python/default.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/notmuch/notmuch-python/default.nix b/pkgs/notmuch/notmuch-python/default.nix new file mode 100644 index 0000000..d639d9a --- /dev/null +++ b/pkgs/notmuch/notmuch-python/default.nix | |||
@@ -0,0 +1,16 @@ | |||
1 | { stdenv, notmuch, pythonPackages }: | ||
2 | stdenv.mkDerivation rec { | ||
3 | name = "notmuch-${pythonPackages.python.name}-${version}"; | ||
4 | version = notmuch.version; | ||
5 | outputs = [ "out" ]; | ||
6 | buildInputs = with pythonPackages; [ sphinx python ]; | ||
7 | src = notmuch.src; | ||
8 | phases = [ "unpackPhase" "buildPhase" "installPhase" "fixupPhase" ]; | ||
9 | buildPhase = '' | ||
10 | cd bindings/python | ||
11 | python setup.py build | ||
12 | ''; | ||
13 | installPhase = '' | ||
14 | python setup.py install --prefix=$out --optimize=1 | ||
15 | ''; | ||
16 | } | ||