rofi-rbw: 1.0.1 -> 1.1.0

This commit is contained in:
Eduardo Quiros 2023-02-08 01:11:48 -06:00
parent 315664758c
commit c2f9d6c27f
No known key found for this signature in database
GPG key ID: B77F36C3F12720B4

View file

@ -1,19 +1,20 @@
{ lib, buildPythonApplication, fetchFromGitHub, configargparse, setuptools }:
{ lib, buildPythonApplication, fetchFromGitHub, configargparse, setuptools, poetry-core }:
buildPythonApplication rec {
pname = "rofi-rbw";
version = "1.0.1";
version = "1.1.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "fdw";
repo = "rofi-rbw";
rev = "refs/tags/${version}";
hash = "sha256-YDL0pMl3BX59kzjuykn0lQHu2RMvPhsBrlSiqdcZAXs=";
hash = "sha256-5K6tofC1bIxxNOQ0jk6NbVoaGGyQImYiUZAaAmkwiTA=";
};
nativeBuildInputs = [
setuptools
poetry-core
];
propagatedBuildInputs = [ configargparse ];