13 dirty-equals = buildPythonPackage rec {
14 pname = "dirty-equals";
18 disabled = pythonOlder "3.8";
20 src = fetchFromGitHub {
21 owner = "samuelcolvin";
23 rev = "refs/tags/v${version}";
24 hash = "sha256-ShbkPGj1whOQ11bFLUSTfvVEVlvc3JUzRDICbBohgMM=";
31 propagatedBuildInputs = [
36 passthru.tests.pytest = dirty-equals.overrideAttrs { doCheck = true; };
44 pythonImportsCheck = [
49 description = "Module for doing dirty (but extremely useful) things with equals";
50 homepage = "https://github.com/samuelcolvin/dirty-equals";
51 changelog = "https://github.com/samuelcolvin/dirty-equals/releases/tag/v${version}";
52 license = with licenses; [ mit ];
53 maintainers = with maintainers; [ fab ];