Files
nixpkgs/pkgs/development/python-modules/pyface/default.nix
Josef Kemetmüller 767498fefc maintainers: Remove knedlsepp
I haven't been doing much maintenance in the last couple of years
really, so this is long overdue. I still run NixOS on all my computers
and greatly appreciate the time that the *real* maintainers put into it.
❤️
I'm hoping to be able to contribute again at some point down the line.
2024-12-22 13:59:34 +01:00

44 lines
875 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
importlib-metadata,
importlib-resources,
setuptools,
traits,
pythonOlder,
}:
buildPythonPackage rec {
pname = "pyface";
version = "8.0.0";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-fhNhg0e3pkjtIM29T9GlFkj1AQKR815OD/G/cKcgy/g=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
importlib-metadata
importlib-resources
traits
];
doCheck = false; # Needs X server
pythonImportsCheck = [ "pyface" ];
meta = with lib; {
description = "Traits-capable windowing framework";
homepage = "https://github.com/enthought/pyface";
changelog = "https://github.com/enthought/pyface/releases/tag/${version}";
maintainers = with maintainers; [ ];
license = licenses.bsdOriginal;
};
}