1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-03 06:19:10 +03:00
nixpkgs/pkgs/development/python-modules/pyqt-builder/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
820 B
Nix
Raw Normal View History

2021-05-03 13:46:31 +02:00
{ lib, fetchPypi, buildPythonPackage, packaging, sip }:
2020-12-10 12:42:40 +01:00
buildPythonPackage rec {
pname = "pyqt-builder";
version = "1.13.0";
2020-12-10 12:42:40 +01:00
src = fetchPypi {
pname = "PyQt-builder";
inherit version;
sha256 = "sha256-SHdYDDjOtTIOEps4HQg7CoYBxoFm2LmXB/CPoKFonu8=";
2020-12-10 12:42:40 +01:00
};
patches = [
# use the sip-distinfo executable from PATH instead of trying to guess,
# we know it's the right one because it's the _only_ one
./use-sip-distinfo-from-path.patch
];
2021-05-03 13:46:31 +02:00
propagatedBuildInputs = [ packaging sip ];
2020-12-10 12:42:40 +01:00
pythonImportsCheck = [ "pyqtbuild" ];
# There aren't tests
doCheck = false;
meta = with lib; {
description = "PEP 517 compliant build system for PyQt";
homepage = "https://pypi.org/project/PyQt-builder/";
license = licenses.gpl3Only;
2021-10-28 16:21:46 +02:00
maintainers = with maintainers; [ ];
2020-12-10 12:42:40 +01:00
};
}