blob: 027e7c90c6eb9ca8de95280e3593b0e8c06b59a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
pbr,
setuptools,
# dependencies
inflection,
tinycss2,
# checks
pytestCheckHook,
pytest-mock,
}:
buildPythonPackage rec {
pname = "qstylizer";
version = "0.2.4";
pyproject = true;
src = fetchFromGitHub {
owner = "blambright";
repo = "qstylizer";
tag = version;
hash = "sha256-Is/kYkSX9fOX+pLv5g1ns2OxeLpSkaCfO2jPIbiuIxA=";
};
PBR_VERSION = version;
build-system = [
pbr
setuptools
];
dependencies = [
inflection
tinycss2
];
nativeCheckInputs = [
pytestCheckHook
pytest-mock
];
pythonImportsCheck = [ "qstylizer" ];
meta = {
description = "Qt stylesheet generation utility for PyQt/PySide";
homepage = "https://github.com/blambright/qstylizer";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|