mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
python311Packages.approvaltests: 8.3.1 -> 8.4.1
Diff: https://github.com/approvals/ApprovalTests.Python/compare/refs/tags/v8.3.1...v8.4.1 Changelog: https://github.com/approvals/ApprovalTests.Python/releases/tag/v8.4.1
This commit is contained in:
parent
2e2d3d1080
commit
a5f7cae608
@ -1,36 +1,33 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pythonOlder
|
||||
|
||||
# propagates
|
||||
, allpairspy
|
||||
, approval-utilities
|
||||
, beautifulsoup4
|
||||
, buildPythonPackage
|
||||
, empty-files
|
||||
, fetchFromGitHub
|
||||
, mock
|
||||
, mrjob
|
||||
, numpy
|
||||
, pyperclip
|
||||
, pytest
|
||||
, typing-extensions
|
||||
|
||||
# tests
|
||||
, numpy
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, testfixtures
|
||||
, typing-extensions
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "8.3.1";
|
||||
pname = "approvaltests";
|
||||
version = "8.4.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
# no tests included in PyPI tarball
|
||||
src = fetchFromGitHub {
|
||||
owner = "approvals";
|
||||
repo = "ApprovalTests.Python";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-FyYT+w4CX+CdUg0uGwyjw98H8Z+HMVecgMBW/ytrtFU=";
|
||||
hash = "sha256-BuFiNZZ7228CKJ97mVK2S8Siqe040EYV5pElVtwuVf4=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
@ -41,16 +38,18 @@ buildPythonPackage rec {
|
||||
mrjob
|
||||
pyperclip
|
||||
pytest
|
||||
testfixtures
|
||||
typing-extensions
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
mock
|
||||
numpy
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
# tests expects paths below ApprovalTests.Python directory
|
||||
# Tests expects paths below ApprovalTests.Python directory
|
||||
"test_received_filename"
|
||||
"test_pytest_namer"
|
||||
];
|
||||
@ -63,7 +62,8 @@ buildPythonPackage rec {
|
||||
meta = with lib; {
|
||||
description = "Assertion/verification library to aid testing";
|
||||
homepage = "https://github.com/approvals/ApprovalTests.Python";
|
||||
changelog = "https://github.com/approvals/ApprovalTests.Python/releases/tag/v${version}";
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.marsam ];
|
||||
maintainers = with maintainers; [ marsam ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user