depot/third_party/nixpkgs/pkgs/development/python-modules/pyface/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

24 lines
584 B
Nix

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