python310Packages.nox: init at 2022.11.21

This commit is contained in:
Doron Behar
2023-01-25 21:42:56 +01:00
committed by Fabian Affolter
parent 54d3bd62ab
commit fcbf5bf653
2 changed files with 52 additions and 0 deletions
@@ -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 ];
};
}
+2
View File
@@ -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;
};