My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/jaraco-context/default.nix

44 lines
827 B

{ 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 ];
};
}