tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python310Packages.qstylizer: 0.2.1 -> 0.2.2
Fabian Affolter
3 years ago
e6fa5b83
ad8c5054
+14
-9
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
qstylizer
default.nix
+14
-9
pkgs/development/python-modules/qstylizer/default.nix
···
1
{ lib
2
, buildPythonPackage
3
-
, pythonOlder
4
, fetchFromGitHub
5
, inflection
6
, pbr
7
-
, tinycss2
8
-
, pytestCheckHook
9
, pytest-mock
0
0
0
10
}:
11
12
buildPythonPackage rec {
13
pname = "qstylizer";
14
-
version = "0.2.1";
0
0
0
15
16
src = fetchFromGitHub {
17
owner = "blambright";
18
repo = pname;
19
rev = version;
20
-
sha256 = "sha256-iEMxBpS9gOPubd9O8zpVmR5B7+UZJFkPuOtikO1a9v0=";
21
};
0
0
22
23
nativeBuildInputs = [
24
pbr
···
34
pytest-mock
35
];
36
37
-
preBuild = ''
38
-
export PBR_VERSION=${version}
39
-
'';
40
41
meta = with lib; {
42
-
description = "Qt stylesheet generation utility for PyQt/PySide ";
43
homepage = "https://github.com/blambright/qstylizer";
44
license = licenses.mit;
45
maintainers = with maintainers; [ drewrisinger ];
···
1
{ lib
2
, buildPythonPackage
0
3
, fetchFromGitHub
4
, inflection
5
, pbr
0
0
6
, pytest-mock
7
+
, pytestCheckHook
8
+
, pythonOlder
9
+
, tinycss2
10
}:
11
12
buildPythonPackage rec {
13
pname = "qstylizer";
14
+
version = "0.2.2";
15
+
format = "setuptools";
16
+
17
+
disabled = pythonOlder "3.7";
18
19
src = fetchFromGitHub {
20
owner = "blambright";
21
repo = pname;
22
rev = version;
23
+
hash = "sha256-QJ4xhaAoVO4/VncXKzI8Q5f/rPfctJ8CvfedkQVgZgQ=";
24
};
25
+
26
+
PBR_VERSION = version;
27
28
nativeBuildInputs = [
29
pbr
···
39
pytest-mock
40
];
41
42
+
pythonImportsCheck = [
43
+
"qstylizer"
44
+
];
45
46
meta = with lib; {
47
+
description = "Qt stylesheet generation utility for PyQt/PySide";
48
homepage = "https://github.com/blambright/qstylizer";
49
license = licenses.mit;
50
maintainers = with maintainers; [ drewrisinger ];