update xontrib-cd package to build with poetry

This commit is contained in:
cswimr 2024-12-30 12:00:40 -05:00
parent 5680c0afef
commit 237d22276e
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087

View file

@ -1,7 +1,8 @@
{ pkgs, ... }:
(pkgs.python3Packages.buildPythonPackage rec {
(pkgs.python311Packages.buildPythonPackage rec {
name = "xontrib-cd";
version = "0.3.1";
format = "pyproject";
src = pkgs.fetchFromGitHub {
owner = "eugenesvk";
@ -10,6 +11,10 @@
sha256 = "XxSxjyCg7PeX1v3e2KKicvAPmNeq+qVqbW4fXTwAiic=";
};
nativeBuildInputs = with pkgs.python311Packages; [ poetry-core ];
propagatedBuildInputs = with pkgs.python311Packages; [ xonsh ];
meta = {
homepage = "https://github.com/eugenesvk/xontrib-cd";
description = "`cd` to any path without escaping in xonsh shell: `cd ~/[te] st`";