mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
Merge pull request #211014 from r-ryantm/auto-update/python310Packages.jaraco-test
python310Packages.jaraco-test: 5.2.0 -> 5.3.0
This commit is contained in:
commit
75bdfaaf1b
@ -14,16 +14,15 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "jaraco-test";
|
||||
version = "5.2.0";
|
||||
version = "5.3.0";
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "jaraco.test";
|
||||
inherit version;
|
||||
sha256 = "sha256-K1OYx58TriCKoGfdLlEw3ArC699DR5w9r7bxLz2bdIs=";
|
||||
hash = "sha256-f2f8xTlTgXGCPlqp+dA04ulRLOTzVNEb39hNtytGHUA=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
@ -43,12 +42,15 @@ buildPythonPackage rec {
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "jaraco.test" ];
|
||||
pythonImportsCheck = [
|
||||
"jaraco.test"
|
||||
];
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
description = "Testing support by jaraco";
|
||||
homepage = "https://github.com/jaraco/jaraco.test";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ dotlambda ];
|
||||
changelog = "https://github.com/jaraco/jaraco.test/blob/v${version}/CHANGES.rst";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user