mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 11:22:58 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
65 lines
1.2 KiB
Nix
65 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
, setuptools
|
|
, setuptools-scm
|
|
, libxcrypt
|
|
, numpy
|
|
, qt6
|
|
, qtpy
|
|
, pyqt6
|
|
, pytestCheckHook
|
|
, pytest-cov
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "echo";
|
|
version = "0.8.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "glue-viz";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-0FmUA7kOFSRZXwbj8d7asujBPOjE2pFhu6TDNSGD4r0=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools setuptools-scm qt6.wrapQtAppsHook ];
|
|
|
|
buildInputs = lib.optionals (pythonOlder "3.9") [
|
|
libxcrypt
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
qt6.qtconnectivity
|
|
qt6.qtbase
|
|
qt6.qttools
|
|
pyqt6
|
|
numpy
|
|
qtpy
|
|
];
|
|
|
|
env.SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
|
|
|
# collecting ... qt.qpa.xcb: could not connect to display
|
|
# qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even though it was found.
|
|
doCheck = false;
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-cov
|
|
];
|
|
|
|
pythonImportsCheck = [ "echo" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/glue-viz/echo";
|
|
description = "Callback Properties in Python";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ifurther ];
|
|
};
|
|
}
|