python3Packages.chispa: init at 0.8.3

main
Victor Freire 2 years ago
parent a31699dce9
commit 38b4f512a5
  1. 27
      pkgs/development/python-modules/chispa/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -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 ];
};
}

@ -1587,6 +1587,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 { };

Loading…
Cancel
Save