update xontrib-cd
package to build with poetry
This commit is contained in:
parent
5680c0afef
commit
237d22276e
1 changed files with 6 additions and 1 deletions
|
@ -1,7 +1,8 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
(pkgs.python3Packages.buildPythonPackage rec {
|
(pkgs.python311Packages.buildPythonPackage rec {
|
||||||
name = "xontrib-cd";
|
name = "xontrib-cd";
|
||||||
version = "0.3.1";
|
version = "0.3.1";
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
src = pkgs.fetchFromGitHub {
|
src = pkgs.fetchFromGitHub {
|
||||||
owner = "eugenesvk";
|
owner = "eugenesvk";
|
||||||
|
@ -10,6 +11,10 @@
|
||||||
sha256 = "XxSxjyCg7PeX1v3e2KKicvAPmNeq+qVqbW4fXTwAiic=";
|
sha256 = "XxSxjyCg7PeX1v3e2KKicvAPmNeq+qVqbW4fXTwAiic=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = with pkgs.python311Packages; [ poetry-core ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = with pkgs.python311Packages; [ xonsh ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "https://github.com/eugenesvk/xontrib-cd";
|
homepage = "https://github.com/eugenesvk/xontrib-cd";
|
||||||
description = "`cd` to any path without escaping in xonsh shell: `cd ~/[te] st`";
|
description = "`cd` to any path without escaping in xonsh shell: `cd ~/[te] st`";
|
||||||
|
|
Loading…
Reference in a new issue