mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
29 lines
661 B
Nix
29 lines
661 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonAtLeast,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "assay";
|
|
version = "0-unstable-2024-05-09";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "brandon-rhodes";
|
|
repo = pname;
|
|
rev = "74617d70e77afa09f58b3169cf496679ac5d5621";
|
|
hash = "sha256-zYpLtcXZ16EJWKSCqxFkSz/G9PwIZEQGBrYiJKuqnc4=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|