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

27 lines
625 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.10.1";
2020-12-10 12:42:40 +01:00
src = fetchPypi {
pname = "PyQt-builder";
inherit version;
sha256 = "05vyckg4pq95s3b23drhd24sjwzic1k36nwckxz5jc83mixhqywn";
2020-12-10 12:42:40 +01:00
};
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
};
}