7 buildPythonPackage rec {
10 format = "setuptools";
13 inherit pname version;
14 sha256 = "ff8d2b6855f660cd23cd5ec79bd10264d39f24f6235773331b48e7fcd637d6cc";
18 # python 3.12 compatibility
19 substituteInPlace tests/*.py \
20 --replace "assertEquals" "assertEqual" \
21 --replace "assertNotEquals" "assertNotEqual" \
22 --replace "assert_equals" "assert_equal"
26 description = "Mocking, stubbing and spying framework for python";