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/approvaltests/default.nix

63 lines
1.2 KiB

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
# propagates
, allpairspy
, beautifulsoup4
, empty-files
, pyperclip
, pytest
# tests
, numpy
, pytestCheckHook
}:
buildPythonPackage rec {
version = "5.0.2";
pname = "approvaltests";
format = "setuptools";
disabled = pythonOlder "3.6.1";
# no tests included in PyPI tarball
src = fetchFromGitHub {
owner = "approvals";
repo = "ApprovalTests.Python";
rev = "refs/tags/v${version}";
sha256 = "sha256-yEzfDbYHGm3Za4+yIk5lIWM4I+5TnqfluZj8OLN9oK0=";
};
propagatedBuildInputs = [
allpairspy
beautifulsoup4
empty-files
pyperclip
pytest
];
checkInputs = [
numpy
pytestCheckHook
];
disabledTests = [
# tests expects paths below ApprovalTests.Python directory
"test_received_filename"
"test_pytest_namer"
];
pythonImportsCheck = [
"approvaltests.approvals"
"approvaltests.reporters.generic_diff_reporter_factory"
];
meta = with lib; {
description = "Assertion/verification library to aid testing";
homepage = "https://github.com/approvals/ApprovalTests.Python";
license = licenses.asl20;
maintainers = [ maintainers.marsam ];
};
}