nixpkgs/pkgs/development/python-modules/easygui/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
601 B
Nix
Raw Normal View History

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