1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-04 06:42:33 +03:00
nixpkgs/pkgs/development/python-modules/pymsgbox/default.nix

25 lines
626 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage, tkinter }:
2018-08-26 15:43:42 +03:00
buildPythonPackage rec {
pname = "PyMsgBox";
version = "1.0.9";
2018-08-26 15:43:42 +03:00
src = fetchPypi {
inherit pname version;
sha256 = "sha256-IZQifei/96PW2lQYSHBaFV3LsqBu4SDZ8oCh1/USY/8=";
2018-08-26 15:43:42 +03:00
};
propagatedBuildInputs = [ tkinter ];
# Finding tests fails
doCheck = false;
pythonImportsCheck = [ "pymsgbox" ];
2018-08-26 15:43:42 +03:00
meta = with lib; {
2018-08-26 15:43:42 +03:00
description = "A simple, cross-platform, pure Python module for JavaScript-like message boxes";
homepage = "https://github.com/asweigart/PyMsgBox";
2018-08-26 15:43:42 +03:00
license = licenses.bsd3;
maintainers = with maintainers; [ jluttine ];
};
}