depot/third_party/nixpkgs/pkgs/development/python-modules/assay/default.nix
Default email b450903751 Project import generated by Copybara.
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
2022-09-09 16:08:57 +02:00

22 lines
612 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub }:
buildPythonPackage rec {
pname = "assay";
version = "unstable-2022-01-19";
src = fetchFromGitHub {
owner = "brandon-rhodes";
repo = pname;
rev = "bb62d1f7d51d798b05a88045fff3a2ff92c299c3";
sha256 = "sha256-FuAD74mFJ9F9AMgB3vPmODAlZKgPR7FQ4yn7HEBS5Rw=";
};
pythonImportsCheck = [ "assay" ];
meta = with lib; {
homepage = "https://github.com/brandon-rhodes/assay";
description = "Attempt to write a Python testing framework I can actually stand";
license = licenses.mit;
maintainers = with maintainers; [ zane ];
};
}