My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/easygui/default.nix

26 lines
601 B

{ lib, fetchPypi, buildPythonPackage, tkinter }:
buildPythonPackage rec {
pname = "easygui";
version = "0.98.3";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-1lP/ee4fQvY7WgkPL5jOAjNdhq2JY7POJmGAXK/pmgQ=";
};
propagatedBuildInputs = [
tkinter
];
doCheck = false; # No tests available
pythonImportsCheck = [ "easygui" ];
meta = with lib; {
description = "Very simple, very easy GUI programming in Python";
homepage = "https://github.com/robertlugg/easygui";
license = licenses.bsd3;
maintainers = with maintainers; [ jfrankenau ];
};
}