Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / assay / default.nix
blob35dce9a454a2443404842f4f0e8679965cc28519
1 { lib, buildPythonPackage, fetchFromGitHub, pythonAtLeast }:
3 buildPythonPackage rec {
4   pname = "assay";
5   version = "unstable-2022-01-19";
6   format = "setuptools";
8   src = fetchFromGitHub {
9     owner = "brandon-rhodes";
10     repo = pname;
11     rev = "bb62d1f7d51d798b05a88045fff3a2ff92c299c3";
12     hash = "sha256-FuAD74mFJ9F9AMgB3vPmODAlZKgPR7FQ4yn7HEBS5Rw=";
13   };
15   pythonImportsCheck = [ "assay" ];
17   meta = with lib; {
18     homepage = "https://github.com/brandon-rhodes/assay";
19     description = "Attempt to write a Python testing framework I can actually stand";
20     license = licenses.mit;
21     maintainers = with maintainers; [ zane ];
22     broken = pythonAtLeast "3.11";
23   };