IVR Python updates
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
{ lib, buildPythonPackage, fetchFromGitHub, pkgs}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "xonsh-apipenv";
|
||||
version = "0.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "deeuu";
|
||||
repo = "xontrib-apipenv";
|
||||
rev = "0.4.0";
|
||||
sha256 = "sha256-uFn3kF7P4wykd72XkQx6cPWLhBOh2SDQBcI3Idc2rFM=";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Auto pipenv support for Xonsh";
|
||||
homepage = "https://github.com/deeuu/xontrib-apipenv";
|
||||
license = licenses.mit;
|
||||
maintainers = [];
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
|
||||
buildInputs = with pkgs; [
|
||||
pipenv
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user