python310Packages.jaraco-test: init at 5.1.0
This commit is contained in:
parent
64944a5a59
commit
eb757bfa41
54
pkgs/development/python-modules/jaraco-test/default.nix
Normal file
54
pkgs/development/python-modules/jaraco-test/default.nix
Normal file
@ -0,0 +1,54 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchPypi
|
||||
, setuptools
|
||||
, setuptools-scm
|
||||
, toml
|
||||
, jaraco_functools
|
||||
, jaraco-context
|
||||
, more-itertools
|
||||
, jaraco_collections
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "jaraco-test";
|
||||
version = "5.1.0";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "jaraco.test";
|
||||
inherit version;
|
||||
sha256 = "04a7503c0c78cd057bd6b5f16ad1e3379b911b619df6694480a564ebc214c0a8";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
toml
|
||||
jaraco_functools
|
||||
jaraco-context
|
||||
more-itertools
|
||||
jaraco_collections
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "jaraco.test" ];
|
||||
|
||||
meta = {
|
||||
description = "Testing support by jaraco";
|
||||
homepage = "https://github.com/jaraco/jaraco.test";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
@ -4427,6 +4427,8 @@ in {
|
||||
|
||||
jaraco_stream = callPackage ../development/python-modules/jaraco_stream { };
|
||||
|
||||
jaraco-test = callPackage ../development/python-modules/jaraco-test { };
|
||||
|
||||
jaraco_text = callPackage ../development/python-modules/jaraco_text { };
|
||||
|
||||
jarowinkler = callPackage ../development/python-modules/jarowinkler { };
|
||||
|
Loading…
Reference in New Issue
Block a user