33 lines
616 B
Nix
33 lines
616 B
Nix
#
|
|
# oxfs faster sshfs (asynchronous ops)
|
|
#
|
|
# vim: et:ts=2:sw=2:
|
|
#
|
|
{
|
|
callPackage,
|
|
fetchPypi,
|
|
python3Packages,
|
|
xonsh
|
|
}:
|
|
let
|
|
xonsh-python = callPackage ./xonsh-python-package.nix { inherit xonsh; };
|
|
in python3Packages.buildPythonPackage rec {
|
|
pname = "xontrib-whole-word-jumping";
|
|
version = "0.0.1";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-lILsJxptxmAJ3EVruPmq85re57YOmtUfYRltvo3VerI=";
|
|
};
|
|
|
|
nativeBuildInputs = with python3Packages; [
|
|
setuptools
|
|
wheel
|
|
];
|
|
|
|
buildInputs = with python3Packages; [
|
|
prompt-toolkit
|
|
xonsh-python
|
|
];
|
|
}
|