mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
Merge pull request #6329 from DamienCassou/vobject-not-compatible-with-pypy
Make sure vobject is not built by pypy
This commit is contained in:
commit
c6252250d8
1 changed files with 2 additions and 2 deletions
|
@ -7662,7 +7662,7 @@ let
|
|||
sha256 = "1xanqn7rn96841s3lim5lnx5743gc4kyfg4ggj1ys5r0gw8i6har";
|
||||
};
|
||||
|
||||
disabled = isPy3k;
|
||||
disabled = isPy3k || isPyPy;
|
||||
|
||||
propagatedBuildInputs = with self; [ dateutil ];
|
||||
|
||||
|
@ -7683,7 +7683,7 @@ let
|
|||
sha256 = "0avkrcpisfvhz103v7vmq2jd83hvmpqrb4mlbx6ikkk1wcvclsx8";
|
||||
};
|
||||
|
||||
disabled = isPy3k;
|
||||
disabled = isPy3k || isPyPy;
|
||||
|
||||
propagatedBuildInputs = with self; [ sqlite3 vobject lxml requests urwid pyxdg ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue