mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-08 08:04:15 +01:00
This is almost all find-and-replace. I manually edited: * pkgs/development/python-modules/notifications-android-tv/default.nix, * pkgs/servers/home-assistant/default.nix, * pkgs/development/tools/continuous-integration/buildbot/master.nix A few files have not been changed in this PR because they would cause rebuilds. This PR should have 0 rebuilds.
39 lines
806 B
Nix
39 lines
806 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
setuptools-scm,
|
|
wheel,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "1.1.0";
|
|
pname = "python-vagrant";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pycontribs";
|
|
repo = "python-vagrant";
|
|
tag = "v${version}";
|
|
hash = "sha256-apvYzH0IY6ZyUP/FiOVbGN3dXejgN7gn7Mq2tlEaTww=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
setuptools-scm
|
|
wheel
|
|
];
|
|
|
|
# The tests try to connect to qemu
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "vagrant" ];
|
|
|
|
meta = {
|
|
description = "Python module that provides a thin wrapper around the vagrant command line executable";
|
|
homepage = "https://github.com/todddeluca/python-vagrant";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.pmiddend ];
|
|
};
|
|
}
|