2022-06-16 17:23:12 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
2023-01-20 10:41:00 +00:00
|
|
|
, hatchling
|
2023-07-15 17:15:38 +00:00
|
|
|
, pydantic
|
|
|
|
, pytest-examples
|
2022-06-16 17:23:12 +00:00
|
|
|
, pytestCheckHook
|
|
|
|
, pythonOlder
|
|
|
|
, pytz
|
|
|
|
}:
|
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
let
|
|
|
|
dirty-equals = buildPythonPackage rec {
|
|
|
|
pname = "dirty-equals";
|
|
|
|
version = "0.7.0";
|
|
|
|
format = "pyproject";
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "samuelcolvin";
|
|
|
|
repo = pname;
|
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
hash = "sha256-ShbkPGj1whOQ11bFLUSTfvVEVlvc3JUzRDICbBohgMM=";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
hatchling
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
pytz
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
passthru.tests.pytest = dirty-equals.overrideAttrs { doCheck = true; };
|
|
|
|
|
|
|
|
nativeCheckInputs = [
|
|
|
|
pydantic
|
|
|
|
pytest-examples
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"dirty_equals"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Module for doing dirty (but extremely useful) things with equals";
|
|
|
|
homepage = "https://github.com/samuelcolvin/dirty-equals";
|
|
|
|
changelog = "https://github.com/samuelcolvin/dirty-equals/releases/tag/v${version}";
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
2022-06-16 17:23:12 +00:00
|
|
|
};
|
2023-11-16 04:20:00 +00:00
|
|
|
in dirty-equals
|