2017-06-02 14:20:51 +00:00
|
|
|
{ lib , buildPythonPackage , fetchPypi, tkinter }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2023-02-19 17:33:55 +00:00
|
|
|
pname = "pmw";
|
2022-06-23 16:14:19 +00:00
|
|
|
version = "2.1.1";
|
2017-06-02 14:20:51 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
2023-02-19 17:33:55 +00:00
|
|
|
pname = "Pmw";
|
|
|
|
inherit version;
|
2023-03-03 00:48:06 +00:00
|
|
|
hash = "sha256-lIQSRXz8zwx3XdCOCRP7APkIlqM8eXN9VxxzEq6vVcY=";
|
2017-06-02 14:20:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ tkinter ];
|
|
|
|
|
|
|
|
# Disable tests due to their xserver requirement
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A toolkit for building high-level compound widgets in Python using the Tkinter module";
|
2023-01-21 21:41:12 +00:00
|
|
|
homepage = "https://pmw.sourceforge.net/";
|
2017-06-02 14:20:51 +00:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = with lib.maintainers; [ mounium ];
|
|
|
|
};
|
|
|
|
}
|