Merge pull request #279411 from khaneliman/dooit

python3Packages.textual: 0.41.0 -> 0.47.1 and dooit: 2.1.0 -> 2.1.1
This commit is contained in:
Thiago Kenji Okada 2024-01-09 10:27:12 +00:00 committed by GitHub
commit 8ca4b12d9c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 10 deletions

View file

@ -17,7 +17,7 @@
buildPythonPackage rec {
pname = "textual";
version = "0.41.0";
version = "0.47.1";
pyproject = true;
disabled = pythonOlder "3.7";
@ -26,7 +26,7 @@ buildPythonPackage rec {
owner = "Textualize";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-K3JpAVkw6njUT2AGGLL3ACagPK0K6Ny4PvCsbmuNvTo=";
hash = "sha256-RFaZKQ+0o6ZvfZxx95a1FjSHVJ0VOIAfzkdxYQXYBKU=";
};
nativeBuildInputs = [

View file

@ -7,14 +7,14 @@
python3.pkgs.buildPythonApplication rec {
pname = "dooit";
version = "2.1.0";
version = "2.1.1";
format = "pyproject";
src = fetchFromGitHub {
owner = "kraanzu";
repo = "dooit";
rev = "v${version}";
hash = "sha256-ZCEBpaQHaFb09MUlN6acYB3LrfX456uRbhVh9YPz7NU=";
hash = "sha256-YfWfh8oDZSG1DdAV+hzchqyNSSqyeNR5SSEa9B5yGY8=";
};
nativeBuildInputs = with python3.pkgs; [
@ -30,12 +30,6 @@ python3.pkgs.buildPythonApplication rec {
tzlocal
];
# NOTE pyproject version was bumped after release tag 2.0.1 - remove after next release.
postPatch = ''
substituteInPlace pyproject.toml \
--replace "version = \"2.0.0\"" "version = \"2.0.1\""
'';
# No tests available
doCheck = false;