···1919 setuptools
2020 ];
21212222+ # no tests
2323+ doCheck = false;
2424+ pythonImportsCheck = [ "lieer" ];
2525+2226 meta = with lib; {
2323- description = "Fast email-fetching and two-way tag synchronization between notmuch and GMail";
2424- longDescription = ''
2727+ description = "Fast email-fetching and two-way tag synchronization between notmuch and GMail";
2828+ longDescription = ''
2529 This program can pull email and labels (and changes to labels)
2630 from your GMail account and store them locally in a maildir with
2731 the labels synchronized with a notmuch database. The changes to
2832 tags in the notmuch database may be pushed back remotely to your
2933 GMail account.
3034 '';
3131- homepage = "https://lieer.gaute.vetsj.com/";
3535+ homepage = "https://lieer.gaute.vetsj.com/";
3236 repositories.git = "https://github.com/gauteh/lieer.git";
3333- license = licenses.gpl3Plus;
3434- maintainers = with maintainers; [ flokli kaiha ];
3737+ license = licenses.gpl3Plus;
3838+ maintainers = with maintainers; [ flokli kaiha ];
3539 };
3640}
···33, pythonOlder
44, isPy27
55, fetchFromGitHub
66-, nose
76, noise
87, numpy
98, pyplatec
···1110, purepng
1211, h5py
1312, gdal
1313+, pytestCheckHook
1414}:
15151616buildPythonPackage rec {
···4747 --replace 'PyPlatec==1.4.0' 'PyPlatec' \
4848 '';
49495050- # with python<3.5, unittest fails to discover tests because of their filenames
5151- # so nose is used instead.
5250 doCheck = !isPy27; # google namespace clash
5353- checkInputs = stdenv.lib.optional (pythonOlder "3.5") [ nose ];
5454- postCheck = stdenv.lib.optionalString (pythonOlder "3.5") ''
5555- nosetests tests
5656- '';
5151+ checkInputs = [ pytestCheckHook ];
5252+5353+ disabledTests = [
5454+ "TestSerialization"
5555+ ];
57565857 meta = with lib; {
5958 homepage = "http://world-engine.org";
+2-1
pkgs/development/python-modules/xdot/default.nix
···2020 '';
21212222 # https://github.com/NixOS/nixpkgs/pull/107872#issuecomment-752175866
2323- doCheck = stdenv.isLinux;
2323+ # cannot import name '_gi' from partially initialized module 'gi' (most likely due to a circular import)
2424+ doCheck = false;
24252526 meta = with lib; {
2627 description = "An interactive viewer for graphs written in Graphviz's dot";