mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
python312Packages.jaraco-envs: init at 2.6.0
This commit is contained in:
parent
6cc4349330
commit
eb90c22c8c
48
pkgs/development/python-modules/jaraco-envs/default.nix
Normal file
48
pkgs/development/python-modules/jaraco-envs/default.nix
Normal file
@ -0,0 +1,48 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools-scm,
|
||||
path,
|
||||
tox,
|
||||
virtualenv,
|
||||
pytestCheckHook,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "jaraco-envs";
|
||||
version = "2.6.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jaraco";
|
||||
repo = "jaraco.envs";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-yRMX0H6yWN8TiO/LGAr4HyrVS8ZhBjuR885/+UQscP0=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools-scm ];
|
||||
|
||||
dependencies = [
|
||||
path
|
||||
tox
|
||||
virtualenv
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "jaraco.envs" ];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
disabledTestPaths = [
|
||||
# requires networking
|
||||
"jaraco/envs.py"
|
||||
];
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/jaraco/jaraco.envs/blob/${src.rev}/NEWS.rst";
|
||||
description = "Classes for orchestrating Python (virtual) environments";
|
||||
homepage = "https://github.com/jaraco/jaraco.envs";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
@ -6132,6 +6132,8 @@ self: super: with self; {
|
||||
|
||||
jaraco-email = callPackage ../development/python-modules/jaraco-email { };
|
||||
|
||||
jaraco-envs = callPackage ../development/python-modules/jaraco-envs { };
|
||||
|
||||
jaraco-context = callPackage ../development/python-modules/jaraco-context { };
|
||||
|
||||
jaraco-functools = callPackage ../development/python-modules/jaraco-functools { };
|
||||
|
Loading…
Reference in New Issue
Block a user