python3Packages.jaraco-context: init at 4.1.1
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pythonOlder
|
||||
, setuptools-scm
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "jaraco-context";
|
||||
version = "4.1.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jaraco";
|
||||
repo = "jaraco.context";
|
||||
rev = "v${version}";
|
||||
sha256 = "O9Lwv2d/qbiXxIVCp6FLmVKaz0MzAUkoUd0jAyIvgJc=";
|
||||
};
|
||||
|
||||
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
||||
|
||||
pythonNamespaces = [
|
||||
"jaraco"
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
# Module has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "jaraco.context" ];
|
||||
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python module for context management";
|
||||
homepage = "https://github.com/jaraco/jaraco.context";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
||||
@@ -3962,6 +3962,8 @@ in {
|
||||
|
||||
jaraco_collections = callPackage ../development/python-modules/jaraco_collections { };
|
||||
|
||||
jaraco-context = callPackage ../development/python-modules/jaraco-context { };
|
||||
|
||||
jaraco_functools = callPackage ../development/python-modules/jaraco_functools { };
|
||||
|
||||
jaraco_itertools = callPackage ../development/python-modules/jaraco_itertools { };
|
||||
|
||||
Reference in New Issue
Block a user