My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/qstylizer/default.nix

47 lines
814 B

{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, inflection
, pbr
, tinycss2
, pytestCheckHook
, pytest-mock
}:
buildPythonPackage rec {
pname = "qstylizer";
version = "0.2.1";
src = fetchFromGitHub {
owner = "blambright";
repo = pname;
rev = version;
sha256 = "sha256-iEMxBpS9gOPubd9O8zpVmR5B7+UZJFkPuOtikO1a9v0=";
};
nativeBuildInputs = [
pbr
];
propagatedBuildInputs = [
inflection
tinycss2
];
checkInputs = [
pytestCheckHook
pytest-mock
];
preBuild = ''
export PBR_VERSION=${version}
'';
meta = with lib; {
description = "Qt stylesheet generation utility for PyQt/PySide ";
homepage = "https://github.com/blambright/qstylizer";
license = licenses.mit;
maintainers = with maintainers; [ drewrisinger ];
};
}