Skip to content

Commit

Permalink
python312Packages.qstylizer: 0.2.2 -> 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanLepage committed Aug 27, 2024
1 parent 92234fa commit deb423b
Showing 1 changed file with 24 additions and 14 deletions.
38 changes: 24 additions & 14 deletions pkgs/development/python-modules/qstylizer/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,33 +2,43 @@
lib,
buildPythonPackage,
fetchFromGitHub,
inflection,
pbr,
pytest-mock,
pytestCheckHook,
pythonOlder,

# build-system
pbr,
setuptools,

# dependencies
inflection,
tinycss2,

# checks
pytestCheckHook,
pytest-mock,
}:

buildPythonPackage rec {
pname = "qstylizer";
version = "0.2.2";
format = "setuptools";
version = "0.2.3";
pyproject = true;

disabled = pythonOlder "3.7";

src = fetchFromGitHub {
owner = "blambright";
repo = pname;
rev = version;
hash = "sha256-QJ4xhaAoVO4/VncXKzI8Q5f/rPfctJ8CvfedkQVgZgQ=";
repo = "qstylizer";
rev = "refs/tags/${version}";
hash = "sha256-eZVBUGQxa2cr0O48iKWNTqM9E5ZAsiT1WfXjdYdxIdg=";
};

PBR_VERSION = version;

nativeBuildInputs = [ pbr ];
build-system = [
pbr
setuptools
];

propagatedBuildInputs = [
dependencies = [
inflection
tinycss2
];
Expand All @@ -40,10 +50,10 @@ buildPythonPackage rec {

pythonImportsCheck = [ "qstylizer" ];

meta = with lib; {
meta = {
description = "Qt stylesheet generation utility for PyQt/PySide";
homepage = "https://github.com/blambright/qstylizer";
license = licenses.mit;
maintainers = with maintainers; [ drewrisinger ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ drewrisinger ];
};
}

0 comments on commit deb423b

Please sign in to comment.