pythonPackages.pyface: init at 6.1.1
This commit is contained in:
parent
7daa7310bd
commit
8a6415f749
24
pkgs/development/python-modules/pyface/default.nix
Normal file
24
pkgs/development/python-modules/pyface/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ stdenv, fetchPypi, buildPythonPackage
|
||||||
|
, setuptools, six, traits, wxPython
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pyface";
|
||||||
|
version = "6.1.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1q5rihmhcdyyp44p31f5l4a0mc9m3293rvcnma5p8w0v8j7dbrm7";
|
||||||
|
};
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
@ -4861,6 +4861,8 @@ in {
|
|||||||
|
|
||||||
pyext = callPackage ../development/python-modules/pyext { };
|
pyext = callPackage ../development/python-modules/pyext { };
|
||||||
|
|
||||||
|
pyface = callPackage ../development/python-modules/pyface { };
|
||||||
|
|
||||||
pyfantom = callPackage ../development/python-modules/pyfantom { };
|
pyfantom = callPackage ../development/python-modules/pyfantom { };
|
||||||
|
|
||||||
pyfma = callPackage ../development/python-modules/pyfma { };
|
pyfma = callPackage ../development/python-modules/pyfma { };
|
||||||
|
Loading…
Reference in New Issue
Block a user