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

25 lines
584 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage
, setuptools, six, traits
2019-01-31 22:35:30 +01:00
}:
buildPythonPackage rec {
pname = "pyface";
version = "7.1.0";
2019-01-31 22:35:30 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "a3e22a4d31429f0d5b9ff50aaac3fb47e4f7da678b6b0439a7b91ef40675f88d";
2019-01-31 22:35:30 +01:00
};
propagatedBuildInputs = [ setuptools six traits ];
2019-01-31 22:35:30 +01:00
doCheck = false; # Needs X server
meta = with lib; {
2019-01-31 22:35:30 +01:00
description = "Traits-capable windowing framework";
homepage = "https://github.com/enthought/pyface";
maintainers = with maintainers; [ knedlsepp ];
2019-01-31 22:35:30 +01:00
license = licenses.bsdOriginal;
};
}