mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-14 08:54:46 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
31 lines
598 B
Nix
31 lines
598 B
Nix
{
|
|
lib,
|
|
fetchPypi,
|
|
buildPythonPackage,
|
|
tkinter,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "easygui";
|
|
version = "0.98.3";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "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 = [ ];
|
|
};
|
|
}
|