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

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

25 lines
616 B
Nix
Raw Normal View History

2017-06-02 14:20:51 +00:00
{ lib , buildPythonPackage , fetchPypi, tkinter }:
buildPythonPackage rec {
pname = "pmw";
2022-06-23 16:14:19 +00:00
version = "2.1.1";
2017-06-02 14:20:51 +00:00
src = fetchPypi {
pname = "Pmw";
inherit version;
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";
homepage = "https://pmw.sourceforge.net/";
2017-06-02 14:20:51 +00:00
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ mounium ];
};
}