Files
nixpkgs/pkgs/development/python-modules/before-after/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

43 lines
1.1 KiB
Nix

{
buildPythonPackage,
fetchPypi,
fetchpatch,
pytestCheckHook,
lib,
}:
buildPythonPackage rec {
pname = "before-after";
version = "1.0.1";
format = "setuptools";
src = fetchPypi {
pname = "before_after";
inherit version;
hash = "sha256-x9T5uLi7UgldoUxLnFnqaz9bnqn9zop7/HLsrg9aP4U=";
};
patches = [
# drop 'mock' dependency for python >=3.3
(fetchpatch {
url = "https://github.com/c-oreills/before_after/commit/cf3925148782c8c290692883d1215ae4d2c35c3c.diff";
hash = "sha256-FYCpLxcOLolNPiKzHlgrArCK/QKCwzag+G74wGhK4dc=";
})
(fetchpatch {
url = "https://github.com/c-oreills/before_after/commit/11c0ecc7e8a2f90a762831e216c1bc40abfda43a.diff";
hash = "sha256-8YJumF/U8H+hc7rLZLy3UhXHdYJmcuN+O8kMx8yqMJ0=";
})
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "before_after" ];
meta = {
description = "Sugar over the Mock library to help test race conditions";
homepage = "https://github.com/c-oreills/before_after";
maintainers = [ ];
license = lib.licenses.gpl2Only;
};
}