summary refs log tree commit diff
path: root/pkgs/development/python-modules/pymsgbox/default.nix
blob: 84ab3dcab1bf12b9bbea113f85c1c33b1c560017 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, fetchPypi, buildPythonPackage, tkinter }:

buildPythonPackage rec {
  pname = "PyMsgBox";
  version = "1.0.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0kmd00w7p6maiyqpqqb2j8m6v2gh9c0h5i198pa02bc1c1m1321q";
    extension = "zip";
  };

  propagatedBuildInputs = [ tkinter ];

  # Finding tests fails
  doCheck = false;

  meta = with lib; {
    description = "A simple, cross-platform, pure Python module for JavaScript-like message boxes";
    homepage = "https://github.com/asweigart/PyMsgBox";
    license = licenses.bsd3;
    maintainers = with maintainers; [ jluttine ];
  };
}