depot/third_party/nixpkgs/pkgs/development/python-modules/overrides/default.nix
Default email d5f4a57cbf Project import generated by Copybara.
GitOrigin-RevId: ce5e4a6ef2e59d89a971bc434ca8ca222b9c7f5e
2023-08-10 09:59:29 +02:00

37 lines
809 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "overrides";
version = "7.4.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "mkorpela";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-7fbuBcb47BTVxAoKokZmGdIwHSyfyfSiCAZ4XZjWz60=";
};
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"overrides"
];
meta = with lib; {
description = "Decorator to automatically detect mismatch when overriding a method";
homepage = "https://github.com/mkorpela/overrides";
changelog = "https://github.com/mkorpela/overrides/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}