python310Packages.nox: init at 2022.11.21
This commit is contained in:
committed by
Fabian Affolter
parent
54d3bd62ab
commit
fcbf5bf653
@@ -0,0 +1,50 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, flit-core
|
||||
, argcomplete
|
||||
, colorlog
|
||||
, packaging
|
||||
, virtualenv
|
||||
, pytestCheckHook
|
||||
, pytest-cov
|
||||
, jinja2
|
||||
, tox
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "nox";
|
||||
version = "2022.11.21";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "wntrblm";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-N70yBZyrtdQvgaJzkskG3goHit8eH0di9jHycuAwzfU=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pytestCheckHook
|
||||
pytest-cov
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
argcomplete
|
||||
colorlog
|
||||
packaging
|
||||
virtualenv
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
jinja2
|
||||
tox
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://nox.thea.codes/";
|
||||
description = "Flexible test automation for Python";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ doronbehar ];
|
||||
};
|
||||
}
|
||||
@@ -6162,6 +6162,8 @@ self: super: with self; {
|
||||
|
||||
nomadnet = callPackage ../development/python-modules/nomadnet { };
|
||||
|
||||
nox = callPackage ../development/python-modules/nox { };
|
||||
|
||||
nanomsg-python = callPackage ../development/python-modules/nanomsg-python {
|
||||
inherit (pkgs) nanomsg;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user