Files
nixpkgs/pkgs/development/python-modules/assay/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

29 lines
657 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonAtLeast,
}:
buildPythonPackage {
pname = "assay";
version = "0-unstable-2024-05-09";
format = "setuptools";
src = fetchFromGitHub {
owner = "brandon-rhodes";
repo = "assay";
rev = "74617d70e77afa09f58b3169cf496679ac5d5621";
hash = "sha256-zYpLtcXZ16EJWKSCqxFkSz/G9PwIZEQGBrYiJKuqnc4=";
};
pythonImportsCheck = [ "assay" ];
meta = {
homepage = "https://github.com/brandon-rhodes/assay";
description = "Attempt to write a Python testing framework I can actually stand";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ zane ];
};
}