nixpkgs/pkgs/development/python-modules/mock/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

41 lines
806 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, fetchpatch
, python
, pythonOlder
, pytest
, unittestCheckHook
}:
buildPythonPackage rec {
pname = "mock";
version = "4.0.3";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "7d3fbbde18228f4ff2f1f119a45cdffa458b4c0dee32eb4d2bb2f82554bac7bc";
};
patches = [
(fetchpatch {
url = "https://github.com/testing-cabal/mock/commit/f3e3d82aab0ede7e25273806dc0505574d85eae2.patch";
hash = "sha256-wPrv1/WeICZHn31UqFlICFsny2knvn3+Xg8BZoaGbwQ=";
})
];
nativeCheckInputs = [
unittestCheckHook
pytest
];
meta = with lib; {
description = "Mock objects for Python";
homepage = "https://github.com/testing-cabal/mock";
license = licenses.bsd2;
};
}