3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #169295 from chvp/bump-pywlroots

python3Packages.pywlroots: 0.15.12 -> 0.15.13
This commit is contained in:
Fabian Affolter 2022-04-19 14:36:01 +02:00 committed by GitHub
commit 3b5063f23f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,6 +7,7 @@
, libxkbcommon
, libinput
, pixman
, pythonOlder
, udev
, wlroots
, wayland
@ -18,11 +19,14 @@
buildPythonPackage rec {
pname = "pywlroots";
version = "0.15.12";
version = "0.15.13";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-4uS47SJelkeBkqBcA6xzcTQqAXXSgcVJIZErVdR9ELY=";
sha256 = "teZ8udox+4NefgA73gD5d6hPur/zjCapoMYPW36ax0s=";
};
nativeBuildInputs = [ pkg-config ];