1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/development/python-modules/pyface/default.nix
2020-03-06 07:23:19 +01:00

25 lines
612 B
Nix

{ stdenv, fetchPypi, buildPythonPackage
, setuptools, six, traits, wxPython
}:
buildPythonPackage rec {
pname = "pyface";
version = "6.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "1g2g3za64rfffbivlihbf5njrqbv63ln62rv9d8fi1gcrgaw6akw";
};
propagatedBuildInputs = [ setuptools six traits wxPython ];
doCheck = false; # Needs X server
meta = with stdenv.lib; {
description = "Traits-capable windowing framework";
homepage = "https://github.com/enthought/pyface";
maintainers = with stdenv.lib.maintainers; [ knedlsepp ];
license = licenses.bsdOriginal;
};
}