Merge pull request #160387 from ratsclub/chispa

python3Packages.chispa: init at 0.8.3
This commit is contained in:
Ivv 2022-02-19 01:51:31 +01:00 committed by GitHub
commit 4554e66224
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ buildPythonPackage, fetchFromGitHub, lib, poetry-core, pyspark }:
buildPythonPackage rec {
pname = "chispa";
version = "0.8.3";
format = "pyproject";
src = fetchFromGitHub {
repo = "chispa";
owner = "MrPowers";
rev = "v${version}";
sha256 = "sha256-1ePx8VbU8pMd5EsZhFp6qyMptlUxpoCvJfuDm9xXOdc=";
};
checkInputs = [ pyspark ];
nativeBuildInputs = [ poetry-core ];
pythonImportsCheck = [ "chispa" ];
meta = with lib; {
homepage = "https://github.com/MrPowers/chispa";
description = "PySpark test helper methods with beautiful error messages";
license = licenses.mit;
maintainers = with maintainers; [ ratsclub ];
};
}

View file

@ -1593,6 +1593,8 @@ in {
chirpstack-api = callPackage ../development/python-modules/chirpstack-api { };
chispa = callPackage ../development/python-modules/chispa { };
ci-info = callPackage ../development/python-modules/ci-info { };
ci-py = callPackage ../development/python-modules/ci-py { };