mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
pythonPackages.easygui: fix build
This commit is contained in:
parent
64ed9a9a99
commit
db2ca9b10c
1 changed files with 11 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ lib, fetchPypi, buildPythonPackage }:
|
{ lib, fetchPypi, buildPythonPackage, tkinter }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "easygui";
|
pname = "easygui";
|
||||||
|
@ -9,8 +9,18 @@ buildPythonPackage rec {
|
||||||
sha256 = "073f728ca88a77b74f404446fb8ec3004945427677c5618bd00f70c1b999fef2";
|
sha256 = "073f728ca88a77b74f404446fb8ec3004945427677c5618bd00f70c1b999fef2";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace setup.py --replace README.md README.txt
|
||||||
|
'';
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
tkinter
|
||||||
|
];
|
||||||
|
|
||||||
doCheck = false; # No tests available
|
doCheck = false; # No tests available
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "easygui" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Very simple, very easy GUI programming in Python";
|
description = "Very simple, very easy GUI programming in Python";
|
||||||
homepage = "https://github.com/robertlugg/easygui";
|
homepage = "https://github.com/robertlugg/easygui";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue